aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2018-05-26 14:06:05 +0900
committerYasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>2018-05-26 14:06:05 +0900
commit8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46 (patch)
treed440897ed884edfbb6824bb3302d1bcd3654284d
parenta4d68f6e3632c2dc2883ed3cd230e74bf04f5013 (diff)
parent9eb3476df5165581a809f8c928ab42b32b766ec3 (diff)
downloadmailman2-8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46.tar.gz
mailman2-8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46.tar.xz
mailman2-8ae71da2a19374ebc7bd4e90cfb4c8e3cc8ece46.zip
merge lp:mailman 2.1 up to rev 1756
-rw-r--r--Mailman/Gui/GUIBase.py3
-rw-r--r--NEWS7
-rwxr-xr-xbin/add_members98
-rwxr-xr-xmessages/ar/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/ast/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/ca/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/cs/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/da/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/de/LC_MESSAGES/mailman.po381
-rwxr-xr-xmessages/el/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/es/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/et/LC_MESSAGES/mailman.po380
-rwxr-xr-xmessages/eu/LC_MESSAGES/mailman.po379
-rw-r--r--messages/fa/LC_MESSAGES/mailman.po375
-rwxr-xr-xmessages/fi/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/fr/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/gl/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/he/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/hr/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/hu/LC_MESSAGES/mailman.po380
-rw-r--r--messages/ia/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/it/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/ja/LC_MESSAGES/mailman.po152
-rwxr-xr-xmessages/ko/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/lt/LC_MESSAGES/mailman.po375
-rw-r--r--messages/mailman.pot147
-rwxr-xr-xmessages/nl/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/no/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/pl/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/pt/LC_MESSAGES/mailman.po378
-rw-r--r--messages/pt_BR/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/ro/LC_MESSAGES/mailman.po379
-rw-r--r--messages/ru/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/sk/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/sl/LC_MESSAGES/mailman.po381
-rwxr-xr-xmessages/sr/LC_MESSAGES/mailman.po375
-rwxr-xr-xmessages/sv/LC_MESSAGES/mailman.po382
-rwxr-xr-xmessages/tr/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/uk/LC_MESSAGES/mailman.po379
-rwxr-xr-xmessages/vi/LC_MESSAGES/mailman.po378
-rwxr-xr-xmessages/zh_CN/LC_MESSAGES/mailman.po376
-rwxr-xr-xmessages/zh_TW/LC_MESSAGES/mailman.po379
42 files changed, 7851 insertions, 6555 deletions
diff --git a/Mailman/Gui/GUIBase.py b/Mailman/Gui/GUIBase.py
index 32d19929..95d7d177 100644
--- a/Mailman/Gui/GUIBase.py
+++ b/Mailman/Gui/GUIBase.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2002-2015 by the Free Software Foundation, Inc.
+# Copyright (C) 2002-2018 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -173,6 +173,7 @@ class GUIBase:
doc.addError(_('Invalid value for variable: %(property)s'))
# This is the parent of MMBadEmailError and MMHostileAddress
except Errors.EmailAddressError, error:
+ error = Utils.websafe(str(error))
doc.addError(
_('Bad email address for option %(property)s: %(error)s'))
else:
diff --git a/NEWS b/NEWS
index 3f0238f4..da8ac9b4 100644
--- a/NEWS
+++ b/NEWS
@@ -12,6 +12,13 @@ Here is a history of user visible changes to Mailman.
- Existing protections against malicious listowners injecting evil
scripts into listinfo pages have had a few more checks added.
+ - A few more error messages have had their values HTML escaped.
+
+ New Features
+
+ - An option has been added to bin/add_members to issue invitations
+ instead of immediately adding members. (LP: #1773064)
+
i18n
- The Russian translation has been updated by Danil Smirnov.
diff --git a/bin/add_members b/bin/add_members
index bb1c0678..5cc869a6 100755
--- a/bin/add_members
+++ b/bin/add_members
@@ -1,6 +1,6 @@
#! @PYTHON@
#
-# Copyright (C) 1998-2016 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2018 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -15,10 +15,6 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
-#
-# argv[1] should be the name of the list.
-# argv[2] should be the list of non-digested users.
-# argv[3] should be the list of digested users.
# Make sure that the list of email addresses doesn't contain any comments,
# like majordomo may throw in. For now, you just have to remove them manually.
@@ -34,27 +30,40 @@ Options:
-r file
A file containing addresses of the members to be added, one
address per line. This list of people become non-digest
- members. If file is `-', read addresses from stdin. Note that
- -n/--non-digest-members-file are deprecated synonyms for this option.
+ members. If file is `-', read addresses from stdin.
--digest-members-file=file
-d file
Similar to above, but these people become digest members.
+ --invite
+ -i
+ Specify this if you only want to invite the users to a list
+ instead of subscribing them.
+
+ --invite-msg-file=file
+ -m file
+ This will prepend the message in the file to the invite email that
+ gets generated when --invite is set.
+
--welcome-msg=<y|n>
-w <y|n>
Set whether or not to send the list members a welcome message,
- overriding whatever the list's `send_welcome_msg' setting is.
+ overriding whatever the list's `send_welcome_msg' setting is. This
+ is ignored and the list's setting at the time of acceptance is used
+ if --invite is set.
--admin-notify=<y|n>
-a <y|n>
Set whether or not to send the list administrators a notification on
the success/failure of these subscriptions, overriding whatever the
- list's `admin_notify_mchanges' setting is.
+ list's `admin_notify_mchanges' setting is. This is ignored and the
+ list's setting at the time of acceptance is used if --invite is set.
--nomail
-n
- Set the newly added members mail delivery to disabled by admin.
+ Set the newly added members mail delivery to disabled by admin. This
+ is ignored if --invite is set.
--help
-h
@@ -84,6 +93,7 @@ from Mailman import Errors
from Mailman import Message
from Mailman import MailList
from Mailman import MemberAdaptor
+from Mailman.UserDesc import UserDesc
_ = i18n._
C_ = i18n.C_
@@ -117,6 +127,12 @@ def readfile(filename):
+def readmsgfile(filename):
+ lines = open(filename).read()
+ return lines
+
+
+
class Tee:
def __init__(self, outfp):
self.__outfp = outfp
@@ -126,11 +142,8 @@ class Tee:
self.__outfp.write(msg)
-class UserDesc: pass
-
-
-def addall(mlist, members, digest, ack, outfp, nomail):
+def addall(mlist, members, digest, ack, outfp, nomail, invite, invite_msg):
tee = Tee(outfp)
for member in members:
userdesc = UserDesc()
@@ -138,11 +151,23 @@ def addall(mlist, members, digest, ack, outfp, nomail):
userdesc.digest = digest
try:
- mlist.ApprovedAddMember(userdesc,
- ack=ack,
- admin_notif=False,
- whence='bin/add_members',
- )
+ if invite:
+ # These are needed for an invitation.
+ userdesc.password = Utils.MakeRandomPassword()
+ userdesc.language = mlist.preferred_language
+ # Don't forget the special invite hack.
+ userdesc.invitation = mlist.internal_name()
+ # InviteNewMember doesn't throw Errors.MMAlreadyAMember.
+ if mlist.isMember(userdesc.address):
+ print >> tee, _('Already a member: %(member)s')
+ continue
+ mlist.InviteNewMember(userdesc, invite_msg)
+ else:
+ mlist.ApprovedAddMember(userdesc,
+ ack=ack,
+ admin_notif=False,
+ whence='bin/add_members',
+ )
except Errors.MMAlreadyAMember:
print >> tee, _('Already a member: %(member)s')
except Errors.MembershipIsBanned, pattern:
@@ -156,22 +181,28 @@ def addall(mlist, members, digest, ack, outfp, nomail):
except Errors.MMHostileAddress:
print >> tee, _('Hostile address (illegal characters): %(member)s')
else:
- print >> tee, _('Subscribed: %(member)s')
- if nomail:
- mlist.setDeliveryStatus(member, MemberAdaptor.BYADMIN)
+ if invite:
+ print >> tee, _('Invited: %(member)s')
+ else:
+ print >> tee, _('Subscribed: %(member)s')
+ if nomail:
+ mlist.setDeliveryStatus(
+ userdesc.address.lower(), MemberAdaptor.BYADMIN)
def main():
try:
opts, args = getopt.getopt(sys.argv[1:],
- 'a:r:d:w:nh',
+ 'a:r:d:w:im:nh',
['admin-notify=',
'regular-members-file=',
'digest-members-file=',
'welcome-msg=',
+ 'invite',
+ 'invite-msg-file=',
'nomail',
- 'help'])
+ 'help',])
except getopt.error, msg:
usage(1, msg)
@@ -183,6 +214,8 @@ def main():
dfile = None
send_welcome_msg = None
admin_notif = None
+ invite = False
+ invite_msg_file = None
nomail = False
for opt, arg in opts:
if opt in ('-h', '--help'):
@@ -191,6 +224,10 @@ def main():
dfile = arg
elif opt in ('-r', '--regular-members-file'):
nfile = arg
+ elif opt in ('-m', '--invite-msg-file'):
+ invite_msg_file = arg
+ elif opt in ('-i', '--invite'):
+ invite = True
elif opt in ('-w', '--welcome-msg'):
if arg.lower()[0] == 'y':
send_welcome_msg = 1
@@ -215,6 +252,9 @@ def main():
usage(1, C_('Cannot read both digest and normal members '
'from standard input.'))
+ if not invite and invite_msg_file <> None:
+ usage(1, C_('Setting invite-msg-file requires --invite.'))
+
try:
mlist = MailList.MailList(listname)
except Errors.MMUnknownListError:
@@ -237,16 +277,22 @@ def main():
if nfile:
nmembers = readfile(nfile)
+ invite_msg = ''
+ if invite_msg_file:
+ invite_msg = readmsgfile(invite_msg_file)
+
if not dmembers and not nmembers:
usage(0, C_('Nothing to do.'))
s = StringIO()
i18n.set_language(mlist.preferred_language)
if nmembers:
- addall(mlist, nmembers, 0, send_welcome_msg, s, nomail)
+ addall(mlist, nmembers, 0, send_welcome_msg, s, nomail, invite,
+ invite_msg)
if dmembers:
- addall(mlist, dmembers, 1, send_welcome_msg, s, nomail)
+ addall(mlist, dmembers, 1, send_welcome_msg, s, nomail, invite,
+ invite_msg)
if admin_notif:
realname = mlist.real_name
diff --git a/messages/ar/LC_MESSAGES/mailman.po b/messages/ar/LC_MESSAGES/mailman.po
index d378b93f..331f99c5 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2006-03-19 17:06+0300\n"
"Last-Translator: Munzir Taha <munzirtaha@newhorizons.com.sa>\n"
"Language-Team: Arabic\n"
@@ -18,157 +18,157 @@ msgstr ""
"Generated-By: pygettext.py 1.4\n"
"X-Generator: KBabel 1.11.1\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "الحجم غير متوفر"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i بايتات "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "بدون موضوع"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " عند "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "الرسالة السابقة: "
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "الرسالة التالية:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "النقاش"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "الموضوع"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "الكاتب"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "التاريخ"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>حالياً، لا يوجد أي أرشيفات. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "نص مضغوط%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "نص%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "تحديد أرشيف المقالات\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "أبريل"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "فبراير"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "يناير"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "مارس"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "أغسطس"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "يوليو"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "يونيو"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "مايو"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "ديسمبر"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "نوفمبر"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "أكتوبر"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "سبتمبر"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "أول"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "رابع"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "ثاني"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "ثالت"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s ربع %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "أسبوع الإثنين %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "يتم حساب فهرس النقاشات\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "تحديث نص HTML للمقالة %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "ملف المقالة %(filename)s مفقود!"
@@ -230,7 +230,7 @@ msgstr "استقبل رد الرفض الأخير من قبلك بتاريخ %(d
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(بدون عنوان)"
@@ -248,7 +248,7 @@ msgid "Administrator"
msgstr "مشرف"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -257,7 +257,7 @@ msgstr "لا يوجد قائمة بالإسم <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -267,7 +267,7 @@ msgstr "خطأ"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -280,7 +280,7 @@ msgid "Authorization failed."
msgstr "فشل التحقق من الشخصية."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -299,7 +299,7 @@ msgstr ""
"الاستعمال."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "تحذير: "
@@ -326,11 +326,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s قوائم بريدية - ارتباطات إشرافية"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "أهلاً وسهلاً!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "ميلمان"
@@ -380,16 +380,16 @@ msgstr "صفحة ملخص القائمة البريدية"
msgid "<p>(Send questions and comments to "
msgstr "<p>(أرسل الاستفسارات والملاحظات إلى "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "القائمة"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "الشرح"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "]لا يوجد شرح["
@@ -539,7 +539,7 @@ msgstr "اسم الموضوع:"
msgid "Regexp:"
msgstr "صيغة نظامية Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "الشرح:"
@@ -698,7 +698,7 @@ msgid "nodupes"
msgstr "لا تكرارات"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "دفعات"
@@ -730,7 +730,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "ليس لي أيضاً"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "ﻻﺏﺭﻱﺩ"
@@ -845,7 +845,7 @@ msgstr "هل يتم تسجيل هؤلاء المستخدمين الآن أو ي
msgid "Invite"
msgstr "دعوة"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "تسجيل"
@@ -1065,7 +1065,7 @@ msgstr "عنوان بريد إلكتروني سيء أو غير صحيح"
msgid "Hostile address (illegal characters)"
msgstr "عنوان عدواني (فيه أحرف غير مسموحة)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1704,8 +1704,8 @@ msgstr ""
"اضغط على زر <em>إلغاء الاشتراك</em> تحت لإكمال عملية التأكيد\n"
" <p>أو اضغط <em>إلغاء وإزالة</em> لإلغاء طلب إلغاء الاشتراك."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "إلغاء الاشتراك"
@@ -2340,11 +2340,11 @@ msgstr "لم يتم تعديل صيغة HTML "
msgid "HTML successfully updated."
msgstr "تم تحديث HTML بنجاح."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s القوائم البريدية لخادم الاستضافة"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2352,7 +2352,7 @@ msgstr ""
"<p>لا يوجد حالياً أي قائمة بريدية %(mailmanlink)s معلنة للعموم في الخادم "
"%(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2365,11 +2365,11 @@ msgstr ""
"انقر على اسم القائمة لتحصل على معلومات أكثر حولها، أو لتشترك أو لتلغي "
"الاشتراك أو لتغير خيارات اشتراكك."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "صحيح"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2381,11 +2381,11 @@ msgstr ""
"مضافة في الأخير.\n"
" <p>وأيها مشرفوا القائمة، يمكنكم الذهاب إلى:"
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "صفحة الملخص العام لمشرف القائمة"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2393,11 +2393,11 @@ msgstr ""
"لتجدوا واجهة الإدارة الخاصة بقائمتكم. <p>إن كان لديكم أي مشكلة في استعمال "
"القوائم، الرجاء الاتصال بـ "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "خيارات التحرير"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "اعرض هذه الصفحة في"
@@ -2419,54 +2419,54 @@ msgstr "لا يوجد عنوان معطى"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "عنوان بريد إلكتروني غير نظامي: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "لا يوجد مثل هذ العضو: %(safeuser)s"
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "تم إرسال رسالة التأكيد."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
msgstr "تم تحويل طلب إلغاء اشتراكك إلى مشرف القائمة للموافقة."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "رسالة تذكيرية لكلمة سرك قد أرسلت إليك."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "فشل التحقق."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "رسالة تذكيرية لكلمة سرك قد أرسلت إليك."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "ملاحظة: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "اشتراكات القائمة لـ %(safeuser)s على الخادم %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2474,22 +2474,22 @@ msgstr ""
"انقر على الرابط للذهاب إلى صفحة الخيارات المتعلقة بك من أجل القائمة البريدية "
"المطلوبة."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "العناوين لم تتطابق!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "أنت تستعمل أصلاً ذلك العنوان البريدي الإلكتروني"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2501,31 +2501,31 @@ msgstr ""
"%(listname)s, مع أنك طلبت أيضاً تغيير العنوان بشكل عام. عند التأكيد سيتم "
"تغيير كل قائمة بريدية تحتوي على العنوان %(safeuser)s. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "العنوان الجديد عضو أصلاً: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "العناوين يجب أن لا تكون فارغة"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "تم إرسال رسالة تأكيد إلى: %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "تم التزويد بعنوان سيء"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "تم التزويد بعنوان غير نظامي"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s عضو أصلاً في القائمة."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2536,11 +2536,11 @@ msgstr ""
"إذا كنت ترى أن هذا حصل بالخطأ، الرجاء اتصل بأصحاب القائمة في الارتباط "
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "تم تغيير اسم العضو بنجاح. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2549,15 +2549,15 @@ msgstr ""
"لقد عطل مشرف القائمة الإرسال بغير الدفعات لهذه القائمة، ولهذا لم يتم ضبط "
"خيار الإرسال لك. على كل حال تم ضبط الخيارات الأخرى بنجاح."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "يجب أن لا تكون كلمات السر فارغة."
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "لم تتطابق كلمات السر!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2567,12 +2567,12 @@ msgstr ""
"لقد عطل مشرف القائمة الإرسال بغير الدفعات لهذه القائمة، ولهذا لم يتم ضبط "
"خيار الإرسال لك. على كل حال تم ضبط الخيارات الأخرى بنجاح."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "تم تغيير كلمة السر بنجاح."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2581,11 +2581,11 @@ msgstr ""
"يجب عليك تأكيد إلغاء اشتراكك بتفعيل حقل صح/خطأ تحت زر <em>إلغاء الاشتراك</"
"em>. لم يتم إلغاء اشتراكك."
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "نتائج إلغاء الاشتراك"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2595,7 +2595,7 @@ msgstr ""
"تم استلام طلب إلغاء اشتراكك وتم تحويله إلى منظمي القائمة للموافقة. سوف تستلم "
"إعلام فور اتخاذ منظمي القائمة قرارهم."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2608,7 +2608,7 @@ msgstr ""
"إرسال بالدفعات فقد تستلم دفعة أخرى واحدة. إن كان عندك أي أسئلة حول إلغاء "
"اشتراكك، الرجاء اتصل بمالكي القائمة %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2616,7 +2616,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2626,7 +2626,7 @@ msgstr ""
"لقد عطل مشرف القائمة الإرسال بالدفعات لهذه القائمة، ولهذا لم يتم ضبط خيار "
"الإرسال لك. على كل حال تم ضبط الخيارات الأخرى بنجاح."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2636,63 +2636,63 @@ msgstr ""
"لقد عطل مشرف القائمة الإرسال بغير الدفعات لهذه القائمة، ولهذا لم يتم ضبط "
"خيار الإرسال لك. على كل حال تم ضبط الخيارات الأخرى بنجاح."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "لقد قمت بتحديد خياراتك بنجاح."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "من الممكن أن تتلقى دفعة أخيرة واحدة."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>نعم، أنا أريد حقيقة أن ألغي اشتراكي</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "غير كلمة سري"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "اعرض اشتراكاتي الأخرى"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "أرسل كلمة سري إلي برسالة إلكترونية"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "كلمة السر"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "خروج"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "أرسل تعديلاتي"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "يوم"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "يوم"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "غير عنواني واسمي"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>لا يوجد مواضيع معرفة</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2701,19 +2701,19 @@ msgstr ""
"\n"
"أنت مشترك في هذه القائمة بالعنوان المحفوظ حالة أحرفه <em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "صفحة الدخول إلى خيارات عضو القائمة %(realname)s "
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "عنوان إلكتروني و "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "خيارات عضو القائمة %(realname)s للمستخدم %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2738,19 +2738,19 @@ msgstr ""
"الكوكيز مفعلة في مستعرضك، وإلا فلن تؤثر أي من تغييراتك.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "البريد الإلكتروني:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "كلمة السر:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "دخول"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2762,38 +2762,38 @@ msgstr ""
"هذه الرسالة على رابط عليك أن تنقر عليه لتكمل عملية الإزالة (يمكنك أيضاً "
"التأكيد بالبريد، انظر التعليمات في رسالة التأكيد)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "مذكر كلمة السر"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr ""
"بالنقر على زر <em>تذكير</em>, سوف يتم إرسال كلمة سرك إليك بالبريد الإلكتروني."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "تذكير"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<مفقود>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "موضوع مطلوب غير صحيح: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "تفاصيل مصفي الموضوع"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "الاسم:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "الصيغة المكررة (كصيغة نظامية):"
@@ -4787,11 +4787,11 @@ msgstr "لم يرسل أي دفعة."
msgid "Invalid value for variable: %(property)s"
msgstr "قيمة غير صالحة للمتحول: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "عنوان إلكتروني سيء للخيار%(property)s : %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4806,7 +4806,7 @@ msgstr ""
" <p>قد لا تعمل قائمتك بشكل صحيح إلى أن تقوم بتصحيح هذه "
"المشلكة."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5700,7 +5700,16 @@ msgstr ""
"صفة <b>الاسم الحقيقي</b> لم تتغير! يجب أن تختلف عن اسم القائمة بحالة الأحرف "
"فقط."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"صفة <b>الاسم الحقيقي</b> لم تتغير! يجب أن تختلف عن اسم القائمة بحالة الأحرف "
+"فقط."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -7960,39 +7969,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "رفضت الرسالة بسبب تطابق قاعدة مصفي"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s دفعات, الجزء %(volume)d, الإصدار %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "ترويسة دفعة"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "ترويسة دفعة"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "مواضيع اليوم:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "مواضيع اليوم (%(msgcount)d messages)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[أهملت الرسالة بسبب مصفي محتويى]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "تذييل دفعة"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "تذييل دفعة"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "نهاية "
@@ -8135,36 +8144,36 @@ msgstr "تأكيدك مطلوب للانضمام إلى القائمة البر
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "تأكيدك مطلوب لترك القائمة البريدية %(listname)s ."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr "من قبل %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "تحتاج الاشتراكات في %(realname)s موافقة المنظم"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "تنبيه اشتراك %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "يحتاج إلغاء الاشتراك إلى موافقة المدير"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "تنبيه إلغاء اشتراك %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "تنبيه إلغاء اشتراك %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "تحتاج الاشتراكات في %(name)s إلى موافقة المدير"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "آخر تنبيه رد تلقائي لهذا اليوم"
@@ -8346,7 +8355,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8360,29 +8369,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8437,45 +8460,54 @@ msgstr ""
"You must supply at least one of -r and -d options. At most one of the\n"
"files can be `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "عضو مسجل أصلاً: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "عنوان إلكتروني سيء/غير صالح: سطر فارغ"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "عنوان إلكتروني سيء/غير صالح: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "عنوان إلكتروني عدائي )أحرف غير صالحة(: %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "تم تسجيله: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "تم تسجيله: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "معاملات سيئة لـ -w/--welcome-msg : %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr ""
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ast/LC_MESSAGES/mailman.po b/messages/ast/LC_MESSAGES/mailman.po
index 2a914bb3..87f5f86d 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -14,157 +14,157 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "tamau nun disponible"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Ensin asuntu"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " en "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Mensax anterior:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Mensax siguiente:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "filu"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "asuntu"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Anguao nun hai ficheru. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Testu Gzip%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Testu%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "calculando'l ficheru de los artculos\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Abril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Febreru"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Xineru"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marzu"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Agostu"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Xunetu"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Xunu"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mayu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Avientu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Payares"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Ochobre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Setiembre"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primer"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Cuartu"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Segundu"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tercer"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s cuartu %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "La selmana del %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Calculando l'ndiz de filos\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Anovando'l cdigu HTML del artculu %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "nun s'alcuentra'l ficheru %(filename)s asociu al artculu!"
@@ -226,7 +226,7 @@ msgstr "El caberu rebote recibu de ti foi fae %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(ensin asuntu)"
@@ -244,7 +244,7 @@ msgid "Administrator"
msgstr "Alministrador"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -253,7 +253,7 @@ msgstr "La llista <em>%(safelistname)s</em> nun esiste"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -263,7 +263,7 @@ msgstr "Fallu"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -276,7 +276,7 @@ msgid "Authorization failed."
msgstr "Autorizacin infructuosa."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -295,7 +295,7 @@ msgstr ""
" la to llista de corru nun podr usase."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Avisu:"
@@ -324,11 +324,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Llistes de corru en %(hostname)s - Enllaces d'alministracin"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Bienvenos!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -382,16 +382,16 @@ msgstr "la pxina d'informacin xeneral de les llistes de corru"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Unva les tos entrugues y comentarios a "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Llista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descripcin"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[descripcin nun disponible]"
@@ -551,7 +551,7 @@ msgstr "Nome del tema:"
msgid "Regexp:"
msgstr "Espresin regular:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descripcin"
@@ -711,7 +711,7 @@ msgid "nodupes"
msgstr "ensin duplicaos"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "agrupu"
@@ -743,7 +743,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "a m non"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "ensin corru"
@@ -880,7 +880,7 @@ msgstr "Soscribir a esti nuevu grupu o invitalos?"
msgid "Invite"
msgstr "Invitar"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Soscribir"
@@ -1111,7 +1111,7 @@ msgstr "Direicin de corru electrnicu incorreuta/invlida"
msgid "Hostile address (illegal characters)"
msgstr "Direicin hostil (carauteres nun vlidos)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Direicin baneada (coincidencia %(pattern)s)"
@@ -1794,8 +1794,8 @@ msgstr ""
" <p>O calca <em>Encaboxar y descartar</em> pa encaboxar esta solicit\n"
" de baxa."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Esborrase de la llista"
@@ -2478,11 +2478,11 @@ msgstr "Pxina Non Camudada."
msgid "HTML successfully updated."
msgstr "HTML anovu satisfactoriamente."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Llistes de Corru de %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2490,7 +2490,7 @@ msgstr ""
"<p>Nun hai anguao llistes de corru de %(mailmanlink)s\n"
" anunciaes pblicamente en %(hostname)s. "
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2506,11 +2506,11 @@ msgstr ""
"preferencies\n"
" de la to soscricin."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "correuto"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2522,11 +2522,11 @@ msgstr ""
"%(adj)s de la llista.\n"
" <p>Los alministradores de llistes pueden visitar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "la pxina xeneral d'alministracin de llistes"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2535,11 +2535,11 @@ msgstr ""
" <p>Si tienes dalgn problema usando les llistes, por favor, "
"contauta con "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Editar Opciones"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Ver esta pxina en "
@@ -2561,17 +2561,17 @@ msgstr "Nun se di direicin"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Direicin de corru electrnicu incorreuta: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nun esiste soscritor: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "La confirmacin unvise per corru electrnicu."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2580,22 +2580,22 @@ msgstr ""
"La solicit de baxa reunvise al\n"
" alministrador de la llista pa que-y de'l preste."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Unvise un recordatoriu de la to contrasea al to corru-e."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Fall l'autentificacin."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Unvise un recordatoriu de la to contrasea al to corru-e."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2603,16 +2603,16 @@ msgstr ""
"L'alministrador de la llista puede nun ver les otres\n"
" soscriciones pa esti usuariu."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Nota: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "soscriciones de %(safeuser)s en %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2620,7 +2620,7 @@ msgstr ""
"Calca nel enllaz pa visitar la pxina de les tos opciones\n"
" na llista de corru solicitada."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2631,15 +2631,15 @@ msgstr ""
"la\n"
" soscricin pa la llista de corru camudse."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Les direiciones nun concasen!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Y tas usando esa direicin de corru electrnicu"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2652,31 +2652,31 @@ msgstr ""
"global de direicin. Una vegada que lo confirmes, tamin se camudar\n"
"cualisquier otra llista de corru que caltenga la direicin %(safeuser)s."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "La direicin nueva y ta dada d'alta: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Les direiciones nun pueden tar ermes"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Unvise un mensax de confirmacin a %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Disti una direicin de corru electrnicu nun vlida"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Dise una direicin de corru electrnicu illegal"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s y ta soscritu a la llista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2686,11 +2686,11 @@ msgstr ""
" qu'esta restricin ta mal, por favor, contauta\n"
" colos propietarios de la llista en %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Nome de soscritor camudaos dafechu."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2698,15 +2698,15 @@ msgstr ""
"L'alministrador de la llista puede non camudar\n"
" la contrasea pal usuariu."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Les contrasees nun pueden tar ermes"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Les contrasees nun concasen!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2716,12 +2716,12 @@ msgstr ""
" contrasea pa esti usuariu n'otres soscriciones. Sicas,\n"
" camudse la contrasea nesta llista de corru."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Camudse la contrasea dafechu."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2731,11 +2731,11 @@ msgstr ""
" verificacin que ta embaxu de <em>Desoscribir</em>. Nun se\n"
" t'esborr de la soscricin!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultaos de la desoscricin"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2746,7 +2746,7 @@ msgstr ""
" de llendadores pa la so aprobacin. Notificarsete\n"
" cuando'l llendador tenga tomao la so decisin."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2763,7 +2763,7 @@ msgstr ""
" baxa, por favor contauta colos propietarios de la llista en\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2775,7 +2775,7 @@ msgstr ""
" casu, camudarnse les opciones pa la soscricin d'esta\n"
" llista."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2787,7 +2787,7 @@ msgstr ""
"En tou\n"
" casu, les otres tos opciones afitronse dafechu."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2799,63 +2799,63 @@ msgstr ""
"En tou\n"
" casu, les tos otres opciones afitronse dafechu."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Afitasti les tos opciones con situ."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Puede que tengas un caberu corru agrupu."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>S, daveres quiero dame de baxa</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Camudar la mio contrasea"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Llistar les mios otres soscriciones"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Unviame la mio contrasea per corru-e"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "contrasea"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Colar"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Confirmar los mios cambeos"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "des"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "da"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Camudar la mio Direicin y Nome"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Temes non definos</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2865,19 +2865,19 @@ msgstr ""
"Tas soscritu a la llista cola direicin respetando mayscules y minscules\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Llista %(realname)s: pxina d'entrada d'opciones soscritor"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "direicin de corru electrnicu y "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Llista %(realname)s: opciones de soscricin de %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2912,19 +2912,19 @@ msgstr ""
" "
# In this entry insert a space at the end of string, it will be stripped.
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Corru electrnicu: "
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Contrasea:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entrar"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2938,11 +2938,11 @@ msgstr ""
" tamin confirmar per corru electrnicu; mira les intrucciones nel\n"
" mensax de confirmacin)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Remembrar contrasea"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2950,27 +2950,27 @@ msgstr ""
"Al calcar en <em>Remembrar</em>, la to\n"
" contrasea unviarsete per email al to corru."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Remembrar"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<perdu>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "El tema solicitu nun ye vlidu: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalles de la peera de temes"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nome:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Patrn (como una espresin regular):"
@@ -5189,11 +5189,11 @@ msgstr "Nun hai agrupu pa unviar."
msgid "Invalid value for variable: %(property)s"
msgstr "Valor incorreutu pa la variable: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Direicin de corru incorreuta pa la opcin %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5208,7 +5208,7 @@ msgstr ""
" <p>La to llista podra nun furrular correutamente fasta\n"
" qu'iges esti problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6280,7 +6280,16 @@ msgstr ""
"<b>admin_member_chunksize</b> atributu non\n"
" camudu! Tien de ser un enteru > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> atributu non\n"
+" camudu! Tien de ser un enteru > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8901,39 +8910,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Mensax refugu por activar una regla de peera"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Resume de %(realname)s, Vol %(volume)d, Unvu %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "Testera del agrupu"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Testera del agrupu"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Asuntos del da:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Asuntos del da (%(msgcount)d mensaxes)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Mensax descartu pola peera de contenu]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "pie de pxina del agrupu"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Pie de pxina del agrupu"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fin de "
@@ -9087,37 +9096,37 @@ msgstr ""
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Fai falta que confirmes p'abandonar la llista de corru %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
"les soscriciones a %(realname)s necesiten l'aprobacin del alministrador"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Notificacin de soscricin a %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "les baxes de %(realname)s necesiten l'aprobacin del llendador"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Notificacin de desoscricin a %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Notificacin de desoscricin a %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "La soscricin a %(name)s requier aprobacin del alministrador"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Cabera notificacin d'autorempuesta pa gei"
@@ -9304,7 +9313,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9318,29 +9327,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9401,47 +9424,56 @@ msgstr ""
"Tienes de suministrar como mnimo o la opcin -r o la -d. Slo un de los\n"
"ficheros puede ser `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Y ta soscritu: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Direicin de corru-e incorreuta/invlida: llinia erma"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Direicin de corru-e incorreuta/invlida: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Direicin hostil (carauteres non vlidos): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "soscritu: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "soscritu: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argumentu incorreutu a -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argumentu incorreutu a -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Nun puede lleese a los soscritores regulares y a los non regulares dende la "
"entrada estndar."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Nun esiste llista: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ca/LC_MESSAGES/mailman.po b/messages/ca/LC_MESSAGES/mailman.po
index 964a13b8..ab7edddc 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -23,157 +23,157 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "mida no disponible"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sense assumpte"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " a "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Missatge anterior:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Missatge següent:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "fil"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "assumpte"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Ara mateix no hi ha cap arxiu. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Text en gzip%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "s'estan calculant els arxius dels articles\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "abril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "febrer"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "gener"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "març"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "agost"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "juliol"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "juny"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "maig"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "desembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "novembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "octubre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "setembre"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primer"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Quart"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Segon"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tercer"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s trimestre de %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "La setmana del %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "S'està calculant l'índex dels fils\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "S'està actualitzant el codi HTML per a l'article %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "no es troba el fitxer d'article %(filename)s!"
@@ -236,7 +236,7 @@ msgstr " El vostre darrer missatge retornat rebut és del %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sense assumpte)"
@@ -254,7 +254,7 @@ msgid "Administrator"
msgstr "Administrador"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -263,7 +263,7 @@ msgstr "La llista <em>%(safelistname)s</em> no existeix"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -273,7 +273,7 @@ msgstr "Error"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -286,7 +286,7 @@ msgid "Authorization failed."
msgstr "Ha fallat l'autorització."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -305,7 +305,7 @@ msgstr ""
" serà inutilitzable."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Avís: "
@@ -336,11 +336,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Llistes de correu de %(hostname)s - Enllaços administratius"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Us donem la benvinguda"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -394,16 +394,16 @@ msgstr "la pàgina d'informació general de les llistes de correu"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Envieu les preguntes o comentaris a "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Llista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descripció"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[no té cap descripció]"
@@ -560,7 +560,7 @@ msgstr "Nom del tema:"
msgid "Regexp:"
msgstr "Expressió regular:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descripció:"
@@ -723,7 +723,7 @@ msgid "nodupes"
msgstr "sense dupls"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "agrupats"
@@ -755,7 +755,7 @@ msgstr "R"
msgid "notmetoo"
msgstr "sense còpia"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "sense correu"
@@ -896,7 +896,7 @@ msgid "Invite"
msgstr "Convida'ls"
# FIXME: Subscriu-los vs Subscriu-me. La segona és molt més visible. jm
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Subscriu"
@@ -1130,7 +1130,7 @@ msgstr "Adreça de correu electrònic errònia/invàlida"
msgid "Hostile address (illegal characters)"
msgstr "Adreça hostil (caràcters il·legals)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "L'adreça està bandejada (coincideix amb %(pattern)s)"
@@ -1822,8 +1822,8 @@ msgstr ""
"de\n"
" cancel·lació de subscripció."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Cancel·la la subscripció"
@@ -2519,11 +2519,11 @@ msgstr "No s'ha modificat la pàgina."
msgid "HTML successfully updated."
msgstr "S'ha actualitzat l'HTML satisfactòriament."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Llistes de correu a %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2531,7 +2531,7 @@ msgstr ""
"<p>Actualment no hi ha llistes de correu %(mailmanlink)s\n"
" públiques a %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2547,11 +2547,11 @@ msgstr ""
"subscripcions, o\n"
" canviar les preferències de la vostra subscripció."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "correcte"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2563,11 +2563,11 @@ msgstr ""
" de la llista afegit.\n"
" <p>Els administradors de la llista podeu visitar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "la pàgina de visualització general d'administració de la llista"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2575,11 +2575,11 @@ msgstr ""
" per a trobar la interfície de gestió de la vostra llista.\n"
" <p>Si teniu preguntes o comentaris, contacteu "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Edita les opcions"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Mostra aquesta pàgina en"
@@ -2601,17 +2601,17 @@ msgstr "No s'ha especificat cap adreça"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Adreça de correu electrònic errònia: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "El membre no existeix: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "S'ha enviat el correu electrònic de confirmació."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2621,7 +2621,7 @@ msgstr ""
" s'ha enviat a l'administrador de la llista\n"
" perquè l'aprovi."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2630,17 +2630,17 @@ msgstr ""
"Se us ha enviat un recordatori de la vostra contrasenya per correu "
"electrònic."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Ha fallat l'autenticació."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr ""
"Se us ha enviat un recordatori de la vostra contrasenya per correu "
"electrònic."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2648,16 +2648,16 @@ msgstr ""
"L'administrador de la llista no pot visualitzar les\n"
" altres subscripcions d'aquest usuari."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Nota: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Subscripcions de la llista per %(safeuser)s a %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2665,7 +2665,7 @@ msgstr ""
"Feu clic en un enllaç per a visitar la vostra pàgina\n"
" d'opcions de la llista sol·licitada."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2676,15 +2676,15 @@ msgstr ""
" maneres, s'ha canviat la subscripció per a aquesta llista de "
"correu."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Les adreces no coincideixen"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Ja esteu fent servir aquesta adreça de correu electrònic"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2698,31 +2698,31 @@ msgstr ""
"qualsevol altra llista que contingui l'adreça %(safeuser)s també serà "
"canviada."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "La nova adreça de correu electrònic ja es un membre: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "les adreces no poden estar en blanc"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Un missatge de confirmació ha estat enviat a %(newaddr)s."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "L'adreça proporcionada es errònia "
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "L'adreça proporcionada es errònia "
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s ja es un membre de la llista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2733,11 +2733,11 @@ msgstr ""
" contacteu amb el propietari de la llista a "
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Nom de membre canviat satisfactòriament."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2745,15 +2745,15 @@ msgstr ""
"L'administrador de la llista no pot canviar\n"
" la contrasenya d'un usuari."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "La contrasenya no ha d'estar en blanc"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "La contrasenya no coincideix!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2765,12 +2765,12 @@ msgstr ""
"llista \n"
" de correu"
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Contrasenya canviada satisfactòriament."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2781,11 +2781,11 @@ msgstr ""
" la casella sota el botó <em>cancel·lar subscripció</em>.\n"
" La vostra subscripció no ha estat cancel·lada!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultats de la cancel·lació de la subscripció"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2798,7 +2798,7 @@ msgstr ""
"Rebràs una\n"
" notificació quan el moderador prengui una decisió."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2815,7 +2815,7 @@ msgstr ""
" subscripció contacta amb l'amo de la llista a\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2829,7 +2829,7 @@ msgstr ""
"de\n"
" correu sí que s'han canviat."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2843,7 +2843,7 @@ msgstr ""
"totes \n"
" les altres opcions s'han establert satisfactòriament."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2857,63 +2857,63 @@ msgstr ""
"establert\n"
" satisfactòriament."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Heu establert les teves opcions satisfactòriament."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Pot ser que encara rebeu un últim resum."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Sí, realment vull cancel·lar la subscripció</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Canvia la meva contrasenya"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Llista les meves altres subscripcions"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Envia'm la meva contrasenya per correu electrònic"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "contrasenya"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Surt"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Envia els meus canvis"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dies"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dia"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Canvia la meva adreça i el meu nom"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>No hi ha temes definits </em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2923,19 +2923,19 @@ msgstr ""
"Esteu subscrit a aquesta llista amb l'adreça <em>%(cpuser)s</em>, de la qual "
"se n'han mantingut les majúscules i minúscules. "
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Llista %(realname)s: pàgina d'entrada a les opcions de membre "
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "adreça electrònica i "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Llista %(realname)s: opcions d'usuari per a %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2966,19 +2966,19 @@ msgstr ""
" efecte.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Adreça electrònica:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Contrasenya:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entra"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2993,11 +2993,11 @@ msgstr ""
" les instruccions en el missatge de confirmació per a obtenir-ne més \n"
" informació)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Recordatori de la contrasenya"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -3005,27 +3005,27 @@ msgstr ""
"En fer clic en el botó <em>Recorda-me-la</em>, se us enviarà\n"
" la contrasenya per correu electrònic."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Recorda-me-la"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<manca>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "El tema sol·licitat no és vàlid: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalls del filtre de temes"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nom:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Patró (com a regexp):"
@@ -5262,12 +5262,12 @@ msgstr "No hi havia cap resum per a enviar."
msgid "Invalid value for variable: %(property)s"
msgstr "Valor erroni de la variable: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr ""
"Adreça de correu electrònic errònia per a la opció %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5282,7 +5282,7 @@ msgstr ""
" <p>La seva llista podria no funcionar correctament fins\n"
" que corregeixi el problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6381,7 +6381,16 @@ msgstr ""
"No s'ha canviat l'atribut <b>admin_member_chunksize</b>.\n"
" Cal que sigui in enter més gran que 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"No s'ha canviat l'atribut <b>admin_member_chunksize</b>.\n"
+" Cal que sigui in enter més gran que 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -9002,39 +9011,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "S'ha rebutjat el missatge perquè coincideix amb una regla de filtre"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Resum de %(realname)s, vol %(volume)d, número %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "capçalera del resum"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Capçalera del resum"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Temes d'avui:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Temes d'avui (%(msgcount)d missatges)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Missatge descartat pel filtre de contingut]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "peu de pàgina del resum"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Peu de pàgina del resum"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Final de "
@@ -9193,38 +9202,38 @@ msgstr ""
"Es requereix la vostra confirmació per a abandonar la llista de correu "
"%(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "les subscripcions a %(realname)s requereixen l'aprovació del moderador"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Notificació de subscripció a %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr ""
"les cancel·lacions de subscripció requereixen l'aprovació del moderador"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Notificació de la cancel·lació de la subscripció a %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Notificació de la cancel·lació de la subscripció a %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"les subscripcions a %(name)s requereixen l'aprovació de l'administrador"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Última notificació d'auto-resposta per avui"
@@ -9414,7 +9423,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9428,29 +9437,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9507,47 +9530,56 @@ msgstr ""
"Has de proporcionar al menys una de les opcions -r i -d. Com a molt un\n"
"dels fitxers pot ser `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Ja és un membre: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Adreça de correu electrònic incorrecta: línia en blanc"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Adreça de correu electrònic incorrecta: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Adreça hostil (caràcter il·legals): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Subscrit: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Subscrit: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argument erroni -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argument erroni a -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"No puc llegir als subscriptors regulars i als no regulars des de l'entrada "
"estàndard."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "La llista no existeix: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/cs/LC_MESSAGES/mailman.po b/messages/cs/LC_MESSAGES/mailman.po
index 9e0979ae..976cff32 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -19,157 +19,157 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "velikost nen znma"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bajt "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Nebyl nalezen subjekt"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " na "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Pedchoz pspvek:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Nsledujc pspvek:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "Vlkno"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "vc"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "datum"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>V souasn dob neexistuj dn archivy. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Komprimovan text %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "generuji archiv pspvk\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Duben"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "nor"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Leden"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Bezen"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Srpen"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "ervenec"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "erven"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Kvten"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Prosinec"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Listopad"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "jen"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Z"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Prvn"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "tvrt"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Druh"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tet"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s tvrtlet %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Tden, kter zan pondlm %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Generuji index pro pspvky sdruen do vlken\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Aktualizuji HTML strnky pro pspvek %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "soubor %(filename)s ve kterm je uloen pspvek nebyl nalezen!"
@@ -233,7 +233,7 @@ msgstr ""
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(no subject)"
@@ -251,7 +251,7 @@ msgid "Administrator"
msgstr "Administrtor"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -260,7 +260,7 @@ msgstr "Nenalezl jsem konferenci <em>%(safelistname)s</em>."
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -270,7 +270,7 @@ msgstr "Chyba"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -283,7 +283,7 @@ msgid "Authorization failed."
msgstr "Selhn autorizace."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -301,7 +301,7 @@ msgstr ""
" zpsob doruen zapnout."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Pozor: "
@@ -328,11 +328,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Konference na serveru %(hostname)s - Administrativn odkazy"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Vtejte!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -385,16 +385,16 @@ msgstr "informan strnce konference"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Zaslejte dotazy a pipomnky na "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Do konference"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Popis"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[dn popis nen k dispozici]"
@@ -549,7 +549,7 @@ msgstr "Nzev tmatu:"
msgid "Regexp:"
msgstr "Regulrn vraz:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Popis:"
@@ -709,7 +709,7 @@ msgid "nodupes"
msgstr "nodupes"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -741,7 +741,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "not metoo"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nomail"
@@ -866,7 +866,7 @@ msgstr ""
msgid "Invite"
msgstr "Pozvni"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Pihlas"
@@ -1092,7 +1092,7 @@ msgstr "Neplatn emailov adresa"
msgid "Hostile address (illegal characters)"
msgstr "Neplatn adresa (obsahuje nepovolen znaky)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Zakzan adresa (vyhovuje vzoru %(pattern)s)"
@@ -1767,8 +1767,8 @@ msgstr ""
"\n"
" <p>A nebo kliknte na <em>Zruit</em> a odhlen se neprovede."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Odhlsit"
@@ -2423,11 +2423,11 @@ msgstr "HTML ablony nebyly zmnny"
msgid "HTML successfully updated."
msgstr "HTML ablony byly spn aktualizovny."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Konference na serveru %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2435,7 +2435,7 @@ msgstr ""
"<p>V souasn dob zde nejsou dn veejn pstupn konference\n"
" %(mailmanlink)s na serveru %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2450,11 +2450,11 @@ msgstr ""
"o konferenci, budete se do n moci pihlsit nebo zmnit parametry\n"
"svho tu."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "Vpravo"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2466,11 +2466,11 @@ msgstr ""
" nzev konference.\n"
" <p>Sprvci konference mohou pout"
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "administrtorsk strnky"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2478,11 +2478,11 @@ msgstr ""
"pro zobrazen administrtorskho rozhran. \n"
" <p>Pokud mte pote s pouvnm konference, kontaktujte "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Editace vlastnost"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Zobraz tuto strnku v "
@@ -2504,17 +2504,17 @@ msgstr "Nebyl zadna adresa"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Neplatn emailov adresa: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nenalezl jsem astnka: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Potvrzovac email byl odesln."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2523,22 +2523,22 @@ msgstr ""
"Vae dost o pihlen byla pedna administrtorovi konference ke "
"zpracovn."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Bylo Vm zaslno pipomenut Vaeho hesla."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Autentizace selhala."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Bylo Vm zaslno pipomenut Vaeho hesla."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2546,24 +2546,24 @@ msgstr ""
"Sprvce konference neme vidt ostatn\n"
" konference, do kterch uivatel pihlen."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Poznmka "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr ""
"Seznam konferenc, ve kterch je pihlen uivatel %(safeuser)s na serveru "
"%(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "Pro zobrazen vlastnost tto konference kliknte na odkaz."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2573,15 +2573,15 @@ msgstr ""
" tohoto uivatele v ostatnch konferencch, kde je pihlen.\n"
" Nicmn daje platn pro tuto konferenci byly zmnny."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresy nesouhlas!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Tuto emailovou adresu ji pouvte"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2594,31 +2594,31 @@ msgstr ""
"zmnu adresy a tak budou po potvrzen zmnny adresy v ostatnch\n"
"konferencch, kterch je uivatel %(safeuser)s lenem."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Nov adresa je v konferenci ji pihlena: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adresy nesm zstat nevyplnn."
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Zprva s upozornnm byla zaslna na adresu %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Neplatn emailov adresa"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Neplatn emailov adresa"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s ji je pihlen."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2628,11 +2628,11 @@ msgstr ""
"kter se nesm pihlsit do konference. Pokud mte pocit, e je to chyba\n"
"kontaktujte sprvce konference na adrese %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Jmno bylo spn zmnno."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2641,15 +2641,15 @@ msgstr ""
"Sprvce konference neme vidt ostatn\n"
" konference, do kterch uivatel pihlen."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Nejsou povolena przdn hesla."
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Hesla nesouhlas"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2659,12 +2659,12 @@ msgstr ""
" ve kterch je astnk pihlen. Nicmn heslo pro tuto konferenci\n"
" bylo zmnno."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Heslo bylo spn zmnno."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2674,11 +2674,11 @@ msgstr ""
"Zakrtnte polko pod tlatkem <em>Odhlsit</em>.\n"
"V tomto okamiku jet nejste odhlen!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Vsledky odhlen"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2688,7 +2688,7 @@ msgstr ""
"V poadavek na odhlen byl pijat a pedn modertorovi ke schvlen.\n"
" O vsledku budete informovn "
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2703,7 +2703,7 @@ msgstr ""
"kontaktujte sprvce\n"
"na adrese: %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2714,7 +2714,7 @@ msgstr ""
" ostatn konference, kde je uivatel pihlen. Nicmn\n"
" pravidla pro tuto konferenci byla zmnna."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2725,7 +2725,7 @@ msgstr ""
"konferenci.\n"
"Ale ostatn volby, kter jste nastavil, byly akceptovny."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2736,63 +2736,63 @@ msgstr ""
"mdu.\n"
"Ale ostatn volby, kter jste nastavil, byly akceptovny."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Vae nastaven bylo spn zmnno."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Jet mon obdrte jeden posledn digest."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Ano; skuten se chci odhlsit</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Zmnit heslo"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Zobraz ostatn konference, ve kterch jsem pihlen."
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Zali mi heslo emailem"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "heslo"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Odhlsit"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Prove zmny"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dny"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "den"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Zm moj adresu a jmno"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nen definovno dn tma</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2803,19 +2803,19 @@ msgstr ""
"psmen\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Konference %(realname)s: pihlen astnka pro editaci parametr"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "emailov adresa a "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Nastaven parametr pro %(safeuser)s v konferenci %(realname)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2846,19 +2846,19 @@ msgstr ""
"do kliknut na odhlsit."
# In this entry insert a space at the end of string, it will be stripped.
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Emailov adresa:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Heslo:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Pihlsit"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2872,38 +2872,38 @@ msgstr ""
"Nebo\n"
"mete odhlen potvrdit mailem, podrobnosti budou uvedeny v t zprv."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Pipomnka hesla"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr ""
"Kliknutm na tlatko <em>Poli heslo</em> Vm bude zaslna Vae heslo."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Poli heslo"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<chyb>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Tma, kter poadujete, neexistuje: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Parametry tmatickho filtru"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Jmno:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Pravidlo (regulrn vraz):"
@@ -5058,11 +5058,11 @@ msgstr "dn digest dvky neekaj na odesln."
msgid "Invalid value for variable: %(property)s"
msgstr "Chybn hodnota promnn: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Chybn emailov adresa pro parametr %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5076,7 +5076,7 @@ msgstr ""
" <code>%(bad)s</code>\n"
" <p>Dokud nebude problm vyeen, konference nemus fungovat."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6022,7 +6022,16 @@ msgstr ""
"Atribut <b>real_name</b> nebyl zmnn. Od jmna konference se sm liit jen "
"velikost psmen."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Atribut <b>real_name</b> nebyl zmnn. Od jmna konference se sm liit jen "
+"velikost psmen."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8444,39 +8453,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Zprva byla zamtnuta filtrovacm pravidlem"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "Zhlav Digest zprvy"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Zhlav Digest zprvy"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dnen menu:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dnen menu (%(msgcount)d zprv):"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Zprva byla zahozena filtrem obsahu]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "Patika digestu"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Patika digestu"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Konec: "
@@ -8621,36 +8630,36 @@ msgstr "Pro pihlen do konference %(listname)s je nutn oven"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Pro odhlen z konference %(listname)s je nutn oven."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr "od %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "pihlky do konference %(realname)s vyaduj souhlas modertora"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s zprva o pihlen."
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "odhlen z konference vyaduje souhlas modertora"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s zprva o odhlen"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s zprva o odhlen"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "pihlky do konference %(name)s vyaduj souhlas modertora"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Posledn dnen automatick odpov"
@@ -8840,7 +8849,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -8853,29 +8862,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8889,47 +8912,56 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Je ji astnkem %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Neplatn emailov adresa: przdn dek"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Neplatn emailov adresa: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Neplatn adresa (obsahuje nepovolen znaky): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Pihlen: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Pihlen: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Chybn parametr u -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Chybn parametr u -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Nemohu st ze standardnho vstupu jak bn astnky, tak astnky "
"vyuvajc digest."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Nenalezl jsem konferenci %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/da/LC_MESSAGES/mailman.po b/messages/da/LC_MESSAGES/mailman.po
index b7bfcd22..9a7e2702 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -17,157 +17,157 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.3\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "st&oslash;rrelsen er ikke tilg&aelig;ngelig"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Emnefelt tomt"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Forrige meddelelse:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "N&aelig;ste meddelelse:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "tr&aring;d"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "emne"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "afsender"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "dato"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Arkivet er for tiden tomt.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip'et tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "opretter arkiv\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "April"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Januar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marts"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "August"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Juli"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Juni"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maj"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "December"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktober"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "F&oslash;rste"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Fjerde"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Andet"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tredje"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s kvartal %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Ugen fra mandag %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Opretter indholdsfortegnelse\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Opdaterer HTML for artikel %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "artikelfilen %(filename)s mangler!"
@@ -229,7 +229,7 @@ msgstr " Sidst modtagne returmail fra dig var dateret %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(emnefelt tomt)"
@@ -247,7 +247,7 @@ msgid "Administrator"
msgstr "Administrator"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -256,7 +256,7 @@ msgstr "Listen findes ikke: <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -266,7 +266,7 @@ msgstr "Fejl"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -279,7 +279,7 @@ msgid "Authorization failed."
msgstr "Godkendelse mislykkedes"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "Formularens levetid er udlbet. (beskyttelse mod forfalskning)"
@@ -296,7 +296,7 @@ msgstr ""
"ubrugelig!"
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Advarsel: "
@@ -325,11 +325,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Maillister p&aring; %(hostname)s - Administrativ adgang"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Velkommen!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -384,16 +384,16 @@ msgstr "oversigt over maillister"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Send sp&oslash;rgsm&aring;l og kommentarer til "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Liste"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Beskrivelse"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[ingen beskrivelse tilg&aelig;ngelig]"
@@ -550,7 +550,7 @@ msgstr "Navnet p&aring; emnet:"
msgid "Regexp:"
msgstr "Regexp-udtryk:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Beskrivelse:"
@@ -710,7 +710,7 @@ msgid "nodupes"
msgstr "undg&aring; dubletter"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "sammendrag-modus"
@@ -742,7 +742,7 @@ msgstr "R"
msgid "notmetoo"
msgstr "ikke-mine"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "stop e-mail"
@@ -872,7 +872,7 @@ msgstr "Tilmeld disse adresser straks, eller inviter dem?"
msgid "Invite"
msgstr "Inviter"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Tilmeld"
@@ -1112,7 +1112,7 @@ msgstr "Forkert/ugyldig e-mailadresse"
msgid "Hostile address (illegal characters)"
msgstr "Forkert e-mailadresse (indeholder ugyldige tegn)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Udelukket adresse (matchede %(pattern)s)"
@@ -1792,8 +1792,8 @@ msgstr ""
"<p>Eller klik <em>Afbryd og Annuller</em> for fortsat at v&aelig;re medlem "
"af listen."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Afmeld mig"
@@ -2473,11 +2473,11 @@ msgstr "Ingen &aelig;ndringer i HTML-koden."
msgid "HTML successfully updated."
msgstr "HTML-koden er opdateret."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "e-maillister p&aring; %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2485,7 +2485,7 @@ msgstr ""
"<p>Der er i &oslash;jeblikket ingen %(mailmanlink)s maillister offentligt "
"tilg&aelig;ngelige p&aring; %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2500,11 +2500,11 @@ msgstr ""
"tilmelde dig, framelde dig, eller\n"
"&aelig;ndre dine personlige indstillinger for listen."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "korrekt"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2516,11 +2516,11 @@ msgstr ""
"tilf&oslash;j '/' og derefter listens %(adj)s navn, til denne websides URL.\n"
"<p>Listeadministratorer kan benytte "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "administrationssiden"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2528,11 +2528,11 @@ msgstr ""
" for at administrere en liste.\n"
"<p>Send sp&oslash;rgsm&aring;l og kommentarer til "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "&AElig;ndre Indstillinger"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Se denne side p&aring;"
@@ -2554,17 +2554,17 @@ msgstr "Ingen e-mailadresse angivet"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Forkert/Ugyldig e-mailadresse: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Medlemmet findes ikke: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "En e-mail med bekr&aelig;ftelse er afsendt."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2573,7 +2573,7 @@ msgstr ""
"Din anmodning om at blive afmeldt maillisten\n"
" skal godkendes og er blevet videresendt til listeadministrator."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2583,31 +2583,31 @@ msgstr ""
" s er en e-mail med din adgangskode sendt til "
"dig."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Login mislykkedes."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "En e-mail med din adgangskode er sendt til dig."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
"Liste administratoren m&aring; ikke se denne brugers andre listemedlemskaber."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Bem&aelig;rk: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Listemedlemskab for %(safeuser)s p&aring; %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2615,7 +2615,7 @@ msgstr ""
"Klik p&aring; en liste for at komme til dine personlige indstillinger for "
"listen."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2625,15 +2625,15 @@ msgstr ""
"denne brugers andre medlemskaber. Medlemskabet p&aring; denne liste er dog "
"blevet &aelig;ndret."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresserne er ikke ens!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Den e-mailadresse er du allerede tilmeldt listen med"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2646,31 +2646,31 @@ msgstr ""
"godkendelse vil\n"
"alle andre e-maillister som indeholder %(safeuser)s blive &aelig;ndret. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Den nye adressen er allerede tilmeldt: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adressefelterne m&aelig; ikke v&aelig;re tomme"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "En bekr&aelig;ftelse er sendt i en e-mail til %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Ugyldig e-mailadresse angivet"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Ulovlig e-mailadresse angivet"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s er allerede medlem af listen."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2680,26 +2680,26 @@ msgstr ""
"Hvis du mener at dette er en fejl, kan du kontakte listens ejer p&aring; "
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Navnet er &aelig;ndret. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
msgstr ""
"Liste administratoren m&aring; ikke &aelig;ndre adgangskode for en bruger."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Felterne til adgangskode m&aring; ikke v&aelig;re tomme"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Adgangskoderne er ikke ens!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2709,12 +2709,12 @@ msgstr ""
"brugers andre medlemskaber.\n"
"Adgangskoden p&aring; denne liste er dog blevet &aelig;ndret."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Adgangskoden er &aelig;ndret."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2724,11 +2724,11 @@ msgstr ""
"i boksen under <em>Afmeld mig</em> knappen.\n"
"Du er IKKE fjernet fra listen!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultat af afmelding"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2740,7 +2740,7 @@ msgstr ""
"Du vil modtage en meddelelse s&aring; snart der er truffet en afg&oslash;"
"relse."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2755,7 +2755,7 @@ msgstr ""
"Kontakt venligst listens ejer p&aring; adressen %(owneraddr)s, hvis du har "
"sp&oslash;rgsm&aring;l ang&aring;ende din afmelding."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2766,7 +2766,7 @@ msgstr ""
"brugers andre medlemskaber. Indstillingerne for denne liste er dog blevet "
"&aelig;ndret."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2778,7 +2778,7 @@ msgstr ""
"Dit valg af sammendrag-modus blev derfor ikke gennemf&oslash;rt, men alle "
"andre &aelig;ndringer er gennemf&oslash;rt"
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2790,63 +2790,63 @@ msgstr ""
"Dit fravalg af sammendrag-modus blev derfor ikke gennemf&oslash;rt, men alle "
"dine andre &aelig;ndringer er gennemf&oslash;rt."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Dine valg af indstillinger er nu gennemf&oslash;rt.."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Du vil m&aring;ske modtage en sidste samle-email."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Ja, jeg vil afmelde mig listen</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Skift Adgangskode"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Vis andre lister jeg er medlem af"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Send Mig Min Adgangskode"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "adgangskode"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Log ud"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Gem &aelig;ndringer"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dage"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dag"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "&Aelig;ndre Min Adresse og Mit Navn"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "</em>Ingen emner er defineret</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2855,19 +2855,19 @@ msgstr ""
"\n"
"Du er medlem af denne liste med e-mailadressen <em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s: login til personlige indstillinger"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-mailadresse og "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s: personlige indstillinger for %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2898,19 +2898,19 @@ msgstr ""
"ellers vil ingen af dine &aelig;ndringer blive gemt.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-mailadresse:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Adgangskode:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Log ind"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2925,11 +2925,11 @@ msgstr ""
"Du kan ogs&aring; bekr&aelig;fte afmeldingen via e-mail. F&oslash;lg "
"instruktionen i den e-mail du f&aring;r tilsendt."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Send mig min Adgangskode"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2937,27 +2937,27 @@ msgstr ""
"Klik p&aring; <em>Send Adgangskode</em> for at f&aring; din adgangskode "
"tilsendt i en e-mail."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Send Adgangskode"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<mangler>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Emnet er ikke gyldigt: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Mere information om emnefilteret"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Navn:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Filter (regexp-udtryk):"
@@ -5143,11 +5143,11 @@ msgstr "Det var ingen samle-email der skulle sendes."
msgid "Invalid value for variable: %(property)s"
msgstr "Ugyldig v&aelig;rdi for: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Ugyldig e-mailadresse for indstillingen %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5160,7 +5160,7 @@ msgstr ""
"<code>%(bad)s</code>\n"
"<p>Din liste vil muligvis ikke fungere ordentligt f&oslash;r du retter dette."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6241,7 +6241,16 @@ msgstr ""
"<b>admin_member_chunksize</b> attribut ikke\n"
" &aelig;ndret! Det skal v&aelig;re et heltal > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> attribut ikke\n"
+" &aelig;ndret! Det skal v&aelig;re et heltal > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8786,39 +8795,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Meddelelsen afvist, fordi den blev fanget af en filterregel"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Sammendrag af %(realname)s, Vol %(volume)d, Udgave %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "toptekst"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Toptekst"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dagens emner:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dagens emner (%(msgcount)d meddelelser)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Meddelelsen fjernet af indholdsfilter]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "bundtekst"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Bundtekst"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Slut p "
@@ -8968,36 +8977,36 @@ msgstr "Du skal bekrfte at du gerne vil tilmeldes %(listname)s mail listen"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Du skal bekrfte at du gerne vil forlade %(listname)s mail listen"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " fra %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "tilmelding til %(realname)s krver godkendelse af moderator"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Meddelelse om tilmelding til maillisten %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "Framelding krver godkendelse af moderator"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Meddelelse om framelding fra maillisten %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Meddelelse om framelding fra maillisten %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "tilmelding til %(name)s krver godkendelse af administrator"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Sidste automatiske svar i dag"
@@ -9186,7 +9195,8 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
+#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9199,29 +9209,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9282,47 +9306,56 @@ msgstr ""
"Du skal som minimum vlge \"-r\" eller \"-d\". Hjst et filnavn kan\n"
"vre \"-\".\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Allerede medlem: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Forkert/Ugyldig e-mailadresse: tom linie"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Forkert/Ugyldig e-mailadresse: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Ugyldige tegn i e-mailadressen: %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Tilmeldt: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Tilmeldt: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Ugyldigt argument til -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Ugyldigt argument til -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Kan ikke lse bde medlemmer i normal-modus og medlemmer i sammendrag-modus "
"fra standard input."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Listen findes ikke: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/de/LC_MESSAGES/mailman.po b/messages/de/LC_MESSAGES/mailman.po
index 50a68ae8..2bf97273 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2016-09-15 14:32-0700\n"
"Last-Translator: Mirian Margiani <mirian@margiani.ch>\n"
"Language-Team: German <mailman-i18n@python.org>\n"
@@ -21,169 +21,169 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
# Mailman/Handlers/Decorate.py:49
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "Gre nicht verfgbar"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i Bytes "
# Mailman/Archiver/pipermail.py:166 Mailman/Archiver/pipermail.py:167
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Kein Betreff"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "Vorherige Nachricht (dieses Gesprchs):"
# Mailman/Gui/Archive.py:31
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "Nchste Nachricht (dieses Gesprchs):"
# Mailman/Archiver/pipermail.py:448
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "Diskussionsfaden"
# Mailman/Handlers/CalcRecips.py:37 Mailman/Handlers/CookHeaders.py:55
# Mailman/Handlers/Hold.py:240 Mailman/Handlers/Hold.py:274
# Mailman/Handlers/ToDigest.py:213 Mailman/ListAdmin.py:202
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "Betreff"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "Autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "Datum"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Keine Archive vorhanden. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "%(sz)s Text gepackt (gzip)"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
# Mailman/Cgi/private.py:62
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "Bearbeite Archive\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "April"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Januar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mrz"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "August"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Juli"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Juni"
# Mailman/Cgi/options.py:563
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mai"
# Mailman/HTMLFormatter.py:264
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Dezember"
# Mailman/HTMLFormatter.py:264
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktober"
# Mailman/HTMLFormatter.py:264
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
# Mailman/Cgi/admin.py:266 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:147
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Erste(s)"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Vierte(s)"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Zweite(r)"
# Mailman/Cgi/admin.py:816
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Dritte(s)"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s Quartal %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Woche %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Berechne verketteten Index\n"
# Mailman/Archiver/pipermail.py:414
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Aktualisiere HTML fr Artikel %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "Artikel-Datei %(filename)s fehlt!"
@@ -256,7 +256,7 @@ msgstr " Die letzte Unzustellbarkeitsmeldung von Ihnen kam am %(date)s"
# Mailman/Handlers/ToDigest.py:213 Mailman/ListAdmin.py:202
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(kein Betreff)"
@@ -282,7 +282,7 @@ msgstr "Administrator"
# Mailman/Cgi/rmlist.py:60 Mailman/Cgi/roster.py:55
# Mailman/Cgi/subscribe.py:57
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -293,7 +293,7 @@ msgstr "Keine Liste mit Namen <em>%(safelistname)s</em> vorhanden."
# Mailman/Cgi/subscribe.py:47 Mailman/Cgi/subscribe.py:56
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -304,7 +304,7 @@ msgstr "Fehler"
# Mailman/Cgi/options.py:52
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -319,7 +319,7 @@ msgid "Authorization failed."
msgstr "Zugang verweigert."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
"Die Gltigkeitsdauer des Formular ist abgelaufen. (request forgery check)"
@@ -340,7 +340,7 @@ msgstr ""
# Mailman/Cgi/admin.py:1337
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Achtung: "
@@ -374,12 +374,12 @@ msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s E-Mail Listen - Administrative Links"
# Mailman/Cgi/admin.py:225 Mailman/Cgi/listinfo.py:97
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Willkommen!"
# Mailman/Cgi/admin.py:228 Mailman/Cgi/listinfo.py:100
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -438,19 +438,19 @@ msgid "<p>(Send questions and comments to "
msgstr "<p>(Bitte senden Sie Fragen oder Kommentare an "
# Mailman/Cgi/admin.py:266 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:147
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Liste"
# Mailman/Cgi/admin.py:267 Mailman/Cgi/admin.py:508
# Mailman/Cgi/listinfo.py:133
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Beschreibung"
# Mailman/Cgi/admin.py:273 Mailman/Cgi/listinfo.py:139 bin/list_lists:103
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[keine Beschreibung verfgbar]"
@@ -632,7 +632,7 @@ msgid "Regexp:"
msgstr "Regulrer Ausdruck:"
# Mailman/Cgi/admin.py:652 Mailman/Cgi/options.py:799
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Beschreibung:"
@@ -812,7 +812,7 @@ msgstr "Keine Duplikate"
# Mailman/Cgi/admin.py:818
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "Sammlung"
@@ -847,7 +847,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "Keine eigenen"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "Keine E-Mail"
@@ -990,7 +990,7 @@ msgid "Invite"
msgstr "Einladen"
# Mailman/Cgi/confirm.py:220 Mailman/Cgi/listinfo.py:171
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Abonnieren"
@@ -1281,7 +1281,7 @@ msgstr "Ungltige E-Mail-Adresse"
msgid "Hostile address (illegal characters)"
msgstr "Unzulssige E-Mail-Adresse (illegale Zeichen!)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Blockierte Adresse (passte auf %(pattern)s)"
@@ -2041,8 +2041,8 @@ msgstr ""
# Mailman/Cgi/confirm.py:388 Mailman/Cgi/options.py:530
# Mailman/Cgi/options.py:665 Mailman/Cgi/options.py:675
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Kndigung des Abos"
@@ -2783,12 +2783,12 @@ msgid "HTML successfully updated."
msgstr "HTML erfolgreich aktualisiert"
# Mailman/Cgi/listinfo.py:69
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr " Mailinglisten auf %(hostname)s"
# Mailman/Cgi/listinfo.py:103
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2797,7 +2797,7 @@ msgstr ""
"dem Server %(hostname)s."
# Mailman/Cgi/listinfo.py:107
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2813,12 +2813,12 @@ msgstr ""
" Optionen Ihres Abonnements anzupassen."
# Mailman/Cgi/listinfo.py:113
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "rechts"
# Mailman/Cgi/listinfo.py:116
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2833,12 +2833,12 @@ msgstr ""
" <p>Fr Administratoren der Listen gibt es die Seite "
# Mailman/Cgi/listinfo.py:121
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "bersichtsseite fr Listenadministratoren"
# Mailman/Cgi/listinfo.py:122
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2847,12 +2847,12 @@ msgstr ""
" <p>Bei Fragen und Kommentaren senden Sie bitte an an "
# Mailman/Cgi/listinfo.py:180
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Optionen verndern"
# Mailman/Cgi/listinfo.py:183 Mailman/Cgi/roster.py:109
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Anzeige dieser Seite auf / View this page in"
@@ -2878,17 +2878,17 @@ msgid "Illegal Email Address: %(safeuser)s"
msgstr "Ungltige E-Mail-Adresse: %(safeuser)s"
# Mailman/Cgi/options.py:93
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr " %(safeuser)s ist nicht Abonnent."
# Mailman/Cgi/options.py:133
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Eine E-Mail zur Besttigung wurde verschickt."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
@@ -2897,7 +2897,7 @@ msgstr ""
" Listenadministrator weitergeleitet."
# Mailman/Cgi/options.py:144 Mailman/Cgi/options.py:181
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
@@ -2906,34 +2906,34 @@ msgstr ""
" wurde Ihnen ihr Passwort zugesandt."
# Mailman/Cgi/options.py:161
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Authorisierung fehlgeschlagen."
# Mailman/Cgi/options.py:144 Mailman/Cgi/options.py:181
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "An Sie wurde eine E-Mail mit Ihrem Passwort geschickt."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
"Der Listenadministrator darf nicht anderen Abonnements eines Nutzers sehen. "
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Bachten Sie: "
# Mailman/Cgi/options.py:187
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Abonnierte Mailinglisten fr %(safeuser)s auf %(hostname)s "
# Mailman/Cgi/options.py:190
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2941,7 +2941,7 @@ msgstr ""
"Klicken Sie auf einen Link, um Ihre Optionen fr die entsprechende Liste zu "
"verndern."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2952,16 +2952,16 @@ msgstr ""
"gendert."
# Mailman/Cgi/options.py:231
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Die Adressen sind nicht identisch!"
# Mailman/Cgi/options.py:236
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Sie verwenden bereits diese E-Mail-Adresse"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2977,36 +2977,36 @@ msgstr ""
" %(safeuser)s entsprechend angepat."
# Mailman/Cgi/admindb.py:364
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Die neue Adresse ist bereits Mitglied: %(newaddr)s"
# Mailman/Cgi/options.py:242
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Die Adresse darf nicht leer sein"
# Mailman/Cgi/options.py:258
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Eine Besttigung wurde an %(newaddr)s geschickt. "
# Mailman/Cgi/options.py:267
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Ungltige E-Mail-Adresse"
# Mailman/Cgi/options.py:269
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "E-Mail-Adresse ist nicht erlaubt"
# Mailman/Cgi/options.py:271
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s ist bereits Abonnent der Liste."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -3018,28 +3018,28 @@ msgstr ""
"%(owneraddr)s."
# Mailman/Cgi/options.py:280
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Mitgliedsname erfolgreich gendert."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
msgstr "Der Listenadministrator darf nicht das Passwort eines Nutzers ndern. "
# Mailman/Cgi/options.py:291
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Die Passwrter drfen nicht leer sein"
# Mailman/Cgi/options.py:296
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Die Passwrter sind nicht identisch !"
# Mailman/Cgi/options.py:462
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -3052,13 +3052,13 @@ msgstr ""
"diese Liste wurden das Passwort gendert."
# Mailman/Cgi/options.py:312
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Passwort erfolgreich gendert."
# Mailman/Cgi/options.py:321
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -3069,11 +3069,11 @@ msgstr ""
"erfolgreich !"
# Mailman/Cgi/options.py:349
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Ergebnis der Kndigung"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -3085,7 +3085,7 @@ msgstr ""
"ber seine Entscheidung. "
# Mailman/Cgi/options.py:352
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -3099,7 +3099,7 @@ msgstr ""
"eine weitere. Wenn Sie noch irgendwelche Fragen zu Ihrer Kndigung haben, "
"richten Sie bitte Ihre Fragen an den Eigentmer der Liste, %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -3111,7 +3111,7 @@ msgstr ""
"gendert."
# Mailman/Cgi/options.py:458
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -3123,7 +3123,7 @@ msgstr ""
"Optionen wurden erfolgreich gesetzt."
# Mailman/Cgi/options.py:462
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -3135,77 +3135,77 @@ msgstr ""
"Optionen wurden erfolgreich gesetzt."
# Mailman/Cgi/options.py:466
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Sie haben Ihre Optionen erfolgreich gesetzt."
# Mailman/Cgi/options.py:469
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Sie erhalten eventuell eine letzte Nachrichtensammlung."
# Mailman/Cgi/options.py:532
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Ja, Ich mchte das Abo wirklich kndigen</em>"
# Mailman/Cgi/options.py:536
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Mein Passwort ndern"
# Mailman/Cgi/options.py:539
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Meine anderen Abonnements auflisten"
# Mailman/Cgi/options.py:545
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Mein Passwort per E-Mail an mich senden"
# Mailman/Cgi/options.py:547
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "Passwort"
# Mailman/Cgi/options.py:549
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Logout"
# Mailman/Cgi/options.py:551
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Meine nderungen bermitteln"
# Mailman/Cgi/options.py:561
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "Tage"
# Mailman/Cgi/options.py:563
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "Tag"
# Mailman/Cgi/options.py:564
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s "
# Mailman/Cgi/options.py:570
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Meine E-Mail-Adresse und Namen ndern "
# Mailman/Cgi/options.py:598
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Keine Themen definiert</em>"
# Mailman/Cgi/options.py:606
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -3216,22 +3216,22 @@ msgstr ""
"<em>%(cpuser)s</em> abonniert."
# Mailman/Cgi/options.py:619
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Mailingliste %(realname)s: Login fr Mitglieder"
# Mailman/Cgi/options.py:621
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "und E-Mail-Adresse"
# Mailman/Cgi/options.py:623
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Mailingliste %(realname)s: Optionen fr das Mitglied %(safeuser)s "
# Mailman/Cgi/options.py:636
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -3266,22 +3266,22 @@ msgstr ""
"p> "
# Mailman/Cgi/options.py:656
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-Mail-Adresse:"
# Mailman/Cgi/confirm.py:203 Mailman/Cgi/options.py:658
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Passwort:"
# Mailman/Cgi/options.py:660
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Login"
# Mailman/Cgi/options.py:669
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -3301,12 +3301,12 @@ msgstr ""
" E-Mail-Konten weiterleiten lassen!</p>"
# Mailman/Cgi/options.py:679
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Passwort-Erinnerung"
# Mailman/Cgi/options.py:683
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -3317,32 +3317,32 @@ msgstr ""
"zugeschickt. "
# Mailman/Cgi/options.py:686
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Passwort zumailen"
# Mailman/Cgi/options.py:776
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<fehlend>"
# Mailman/Cgi/options.py:787
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Angefordertes Thema ist nicht in Ordnung: %(topicname)s"
# Mailman/Cgi/options.py:792
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Themenfilter Details"
# Mailman/Cgi/options.py:795
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Name:"
# Mailman/Cgi/options.py:797
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Suchmuster (als regulrer Ausdruck):"
@@ -5678,11 +5678,11 @@ msgid "Invalid value for variable: %(property)s"
msgstr "Ungltiger Wert: %(property)s"
# Mailman/Cgi/admin.py:1169
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Ungltige E-Mail-Adresse fr %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5696,7 +5696,7 @@ msgstr ""
"<p>Die Liste kann eventuell nicht richtig funktionieren, solange dieses "
"Problem nicht gelst ist!"
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6814,7 +6814,17 @@ msgstr ""
"<b>admin_member_chunksize</b> Attribute nicht\n"
" verndert. Der Wert mu ein Integer > 0 sein."
-#: Mailman/Gui/General.py:570
+# Mailman/Cgi/admin.py:1188
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> Attribute nicht\n"
+" verndert. Der Wert mu ein Integer > 0 sein."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -9565,46 +9575,46 @@ msgid "Message rejected by filter rule match"
msgstr "Nachricht wurde durch Filter-Regeln blockiert"
# Mailman/Handlers/ToDigest.py:148
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Nachrichtensammlung, Band %(volume)d, Eintrag %(issue)d"
# Mailman/Handlers/ToDigest.py:186
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "Kopfzeile der Nachrichtensammlung"
# Mailman/Handlers/ToDigest.py:189
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Kopfzeile der Nachrichtensammlung"
# Mailman/Handlers/ToDigest.py:202
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Meldungen des Tages:\n"
# Mailman/Handlers/ToDigest.py:269
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Meldungen des Tages (%(msgcount)d messages)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Nachricht durch Content-Filter verworfen]"
# Mailman/Handlers/ToDigest.py:295
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "Fusszeile der Nachrichtensammlung"
# Mailman/Handlers/ToDigest.py:298
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Fusszeile der Nachrichtensammlung"
# Mailman/Handlers/ToDigest.py:312
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Ende "
@@ -9787,43 +9797,43 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Ihre Besttigung ist ntig um die Liste %(listname)s abzubestellen."
# Mailman/MailList.py:614 Mailman/MailList.py:886
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " von %(remote)s"
# Mailman/MailList.py:649
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
"Das Abonnieren von %(realname)s erfordert die Besttigung des Moderators"
# Mailman/MailList.py:711 bin/add_members:258
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s Abonnierungsbenachrichtigung"
# Mailman/Cgi/confirm.py:268
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "Abbestellungen erfordern die Besttigung des Moderators"
# Mailman/MailList.py:739
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s Abbestellungbenachrichtigung"
# Mailman/MailList.py:739
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
msgid "%(realname)s address change notification"
msgstr "Adressnderungsbenachrichtigung fr %(realname)s"
# Mailman/MailList.py:860
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"Das Abonnieren von %(name)s erfordert die Besttigung des Aministrators"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Letzte automatische Benachrichtigung fr heute"
@@ -10043,7 +10053,8 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
+#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -10056,29 +10067,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -10135,56 +10160,66 @@ msgstr ""
"eine der Dateien kann `-' sein.\n"
# Mailman/Cgi/admin.py:1228
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Ist bereits Mitglied: %(member)s"
# Mailman/Cgi/admin.py:1232 Mailman/Cgi/admin.py:1235
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Ungltige E-Mail-Adresse: leere Zeile"
# Mailman/Cgi/admin.py:1232 Mailman/Cgi/admin.py:1235
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Ungltige E-Mail-Adresse: %(member)s"
# Mailman/Cgi/admin.py:1238
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Vermutlich feindliche Adresse (ungltige Zeichen): %(member)s"
# Mailman/Cgi/admin.py:1281
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Abonniert: %(member)s"
+
+# Mailman/Cgi/admin.py:1281
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Abonniert: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Ungltiges Argument fr -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Ungltiges Argument fr -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Normale und Digest-Mitglieder knnen nicht gleichzeitig von der\n"
"Standardeingabe gelesen werden"
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
# Mailman/Cgi/admin.py:66 Mailman/Cgi/admindb.py:60 Mailman/Cgi/confirm.py:52
# Mailman/Cgi/edithtml.py:65 Mailman/Cgi/listinfo.py:49
# Mailman/Cgi/options.py:67 Mailman/Cgi/private.py:96
# Mailman/Cgi/rmlist.py:60 Mailman/Cgi/roster.py:55
# Mailman/Cgi/subscribe.py:57
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Liste nicht vorhanden: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/el/LC_MESSAGES/mailman.po b/messages/el/LC_MESSAGES/mailman.po
index d6f25ce6..8a1b82c8 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -18,157 +18,157 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-7\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr " "
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr " "
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr " :"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr " :"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr " "
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P> , . </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr " %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr " \n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr " %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr " \n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr " HTML %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr " %(filename)s !"
@@ -232,7 +232,7 @@ msgstr ""
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "( )"
@@ -250,7 +250,7 @@ msgid "Administrator"
msgstr ""
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -259,7 +259,7 @@ msgstr " <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -269,7 +269,7 @@ msgstr ""
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -282,7 +282,7 @@ msgid "Authorization failed."
msgstr " ."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -303,7 +303,7 @@ msgstr ""
" ."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr ": "
@@ -336,11 +336,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s - "
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr " !"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -395,16 +395,16 @@ msgstr " "
msgid "<p>(Send questions and comments to "
msgstr "<p>( "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr ""
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr ""
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[ ]"
@@ -564,7 +564,7 @@ msgstr " :"
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr ":"
@@ -724,7 +724,7 @@ msgid "nodupes"
msgstr " "
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr ""
@@ -756,7 +756,7 @@ msgstr ""
msgid "notmetoo"
msgstr " "
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr " mail"
@@ -896,7 +896,7 @@ msgstr " ;"
msgid "Invite"
msgstr ""
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr ""
@@ -1140,7 +1140,7 @@ msgstr "/ emai"
msgid "Hostile address (illegal characters)"
msgstr " ( )"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr " (matched %(pattern)s)"
@@ -1844,8 +1844,8 @@ msgstr ""
" \n"
" ."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr ""
@@ -2544,11 +2544,11 @@ msgstr " ."
msgid "HTML successfully updated."
msgstr " HTML ."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr " %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2557,7 +2557,7 @@ msgstr ""
" %(mailmanlink)s "
"%(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2573,11 +2573,11 @@ msgstr ""
" \n"
" ."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr ""
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2591,11 +2591,11 @@ msgstr ""
" .\n"
" <p> , "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr " "
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2603,11 +2603,11 @@ msgstr ""
" .\n"
" <p> , "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr " "
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr " "
@@ -2629,17 +2629,17 @@ msgstr " "
msgid "Illegal Email Address: %(safeuser)s"
msgstr " Email : %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr " : %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr " email ."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2648,22 +2648,22 @@ msgstr ""
" \n"
" ."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr " ."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr " ."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr " ."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2671,16 +2671,16 @@ msgstr ""
" \n"
" ."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ":"
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr " %(safeuser)s %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2688,7 +2688,7 @@ msgstr ""
" link \n"
" ."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2698,15 +2698,15 @@ msgstr ""
" . , \n"
" ."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr " !"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr " "
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2720,31 +2720,31 @@ msgstr ""
" , \n"
"%(safeuser)s . "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr " : %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr " "
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr " %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr " email "
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr " email "
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s ."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2754,11 +2754,11 @@ msgstr ""
" , \n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr " ."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2766,15 +2766,15 @@ msgstr ""
" \n"
" ."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr " "
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr " !"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2784,12 +2784,12 @@ msgstr ""
" . , \n"
" ."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr " ."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2799,11 +2799,11 @@ msgstr ""
" checkbox <em></em>. \n"
" !"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr " "
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2814,7 +2814,7 @@ msgstr ""
" . \n"
" ."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2832,7 +2832,7 @@ msgstr ""
" \n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2843,7 +2843,7 @@ msgstr ""
" . , \n"
" ."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2854,7 +2854,7 @@ msgstr ""
" , . \n"
" ."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2867,63 +2867,63 @@ msgstr ""
" .\n"
" ."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr " ."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr " ."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>, </em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr " "
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr " "
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr " email "
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr " "
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr ""
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr " "
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr ""
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr ""
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr " "
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em> </em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2934,19 +2934,19 @@ msgstr ""
" \n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s : "
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "email "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s : %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2981,19 +2981,19 @@ msgstr ""
" Internet, .\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Email "
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr " "
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr ""
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -3008,11 +3008,11 @@ msgstr ""
" ( email. "
" ."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr " "
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -3020,27 +3020,27 @@ msgstr ""
" <em></em>, \n"
" emailed."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr ""
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "< >"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr " : %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr " "
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr ":"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr " ( regexp):"
@@ -5359,13 +5359,13 @@ msgstr " ."
msgid "Invalid value for variable: %(property)s"
msgstr " : %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr ""
" %(property)s: "
"%(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5381,7 +5381,7 @@ msgstr ""
"\n"
" ."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6537,7 +6537,16 @@ msgstr ""
"<b>admin_member_chunksize</b> \n"
" ! > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> \n"
+" ! > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -9243,39 +9252,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s , Vol %(volume)d, %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr " :\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr " (%(msgcount)d )"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[ ]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr " "
@@ -9432,36 +9441,36 @@ msgstr " %(listname)s"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr " %(listname)s "
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " ip %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr " %(realname)s "
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr " %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr " "
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr " %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr " %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr " %(name)s "
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr " "
@@ -9650,7 +9659,7 @@ msgid ""
msgstr ""
"%(wday)s %(day)2i %(mon)s %(year)04i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s "
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9664,29 +9673,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9746,47 +9769,56 @@ msgstr ""
" \n"
" `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr " : %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "/ email: "
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "/ email: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr " ( ): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr " %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr " %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr " -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr " -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
" "
" "
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr " : %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/es/LC_MESSAGES/mailman.po b/messages/es/LC_MESSAGES/mailman.po
index 738aa900..fc7f26b9 100755
--- 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2006-02-15 12:02+0100\n"
"Last-Translator: David Martnez Moreno <ender@rediris.es>\n"
"Language-Team: Espaol <es@li.org>\n"
@@ -14,157 +14,157 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "tamao no disponible"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sin asunto"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " en "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Mensaje anterior:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Prximo mensaje:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "hilo"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "asunto"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "fecha"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "Actualmente no hay archivo. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Texto Gzip%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Texto%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "calculando el archivo de los artculos\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Abril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Febrero"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Enero"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marzo"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Agosto"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Julio"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Junio"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mayo"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Diciembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Noviembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Octubre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Septiembre"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primero"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Cuarto"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Segundo"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tercero"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s cuarto %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "La semana del %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Calculando el ndice de hilos\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Actualizando el cdigo HTML del artculo %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "no se encuentra el fichero %(filename)s asociado al artculo!"
@@ -226,7 +226,7 @@ msgstr "El ltimo rebote recibido de usted fue hace %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sin asunto)"
@@ -244,7 +244,7 @@ msgid "Administrator"
msgstr "Administrador"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -253,7 +253,7 @@ msgstr "La lista <em>%(safelistname)s</em> no existe"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -263,7 +263,7 @@ msgstr "Error"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -276,7 +276,7 @@ msgid "Authorization failed."
msgstr "Autorizacin infructuosa."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -295,7 +295,7 @@ msgstr ""
" su lista de distribucin no podr usarse."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Advertencia: "
@@ -325,11 +325,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Listas de distribucin en %(hostname)s - Enlaces de administracin"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Bienvenidos!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -384,16 +384,16 @@ msgstr "la pgina de informacin general de las listas de distribucin"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Mande sus preguntas y comentarios a "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descripcin"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[descripcin no disponible]"
@@ -554,7 +554,7 @@ msgstr "Nombre del tema:"
msgid "Regexp:"
msgstr "Expresin regular:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descripcin"
@@ -714,7 +714,7 @@ msgid "nodupes"
msgstr "sin duplicados"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "agrupado"
@@ -746,7 +746,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "a m no"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "sin correo"
@@ -885,7 +885,7 @@ msgstr "&iquest;suscribirs a este nuevo grupo o invitarlos?"
msgid "Invite"
msgstr "Invitar"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Subscribir"
@@ -1115,7 +1115,7 @@ msgstr "Direccin de correo electrnico incorrecta/invlida"
msgid "Hostile address (illegal characters)"
msgstr "Direccin hostil (caracteres no vlidos)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Direccin vetada (coincidencia %(pattern)s)"
@@ -1803,8 +1803,8 @@ msgstr ""
" <p>O pulse <em>Cancelar y descartar</em> para cancelar esta solicitud\n"
" de baja."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Borrarse de la lista"
@@ -2487,11 +2487,11 @@ msgstr "El cdigo HTML no se ha cambiado"
msgid "HTML successfully updated."
msgstr "Se ha cambiado el cdigo HTML satisfactoriamente"
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listas de distribucin de %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2499,7 +2499,7 @@ msgstr ""
"<p>No hay actualmente listas de distribucin de %(mailmanlink)s\n"
" anunciadas pblicamente en %(hostname)s. "
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2517,11 +2517,11 @@ msgstr ""
" o cambiar las preferencias de su \n"
" suscripcin."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "correcto"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2533,11 +2533,11 @@ msgstr ""
" \"/\" seguido por el nombre %(adj)s de la lista.\n"
" <p>Los administradores de listas pueden visitar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "la pgina general de administracin de listas"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2546,11 +2546,11 @@ msgstr ""
" <p>Si tiene algn problema usando las listas, haga el favor de\n"
" ponerse en contacto con "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Editar opciones"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Ver esta pgina en "
@@ -2572,17 +2572,17 @@ msgstr "No se ha indicado una direccin"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Direccin de correo electrnico incorrecta: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "No existe tal suscriptor: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Se ha enviado el mensaje de confirmacin."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2591,7 +2591,7 @@ msgstr ""
"La solicitud de baja ha sido reenviada al administrador de la\n"
"lista para que le de el visto bueno."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2599,16 +2599,16 @@ msgid ""
msgstr ""
"Se le ha mandado un recordatorio de su clave por correo electrnico.<p>"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "La autentificacin ha sido infructuosa."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr ""
"Se le ha mandado un recordatorio de su clave por correo electrnico.<p>"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2616,16 +2616,16 @@ msgstr ""
"El administrador de la lista puede que no vea las otras\n"
" suscripciones de este usuario."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Nota: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "suscripciones de %(safeuser)s en %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2633,7 +2633,7 @@ msgstr ""
"Dle con el ratn a un enlace para visitar su pgina\n"
" de opciones en la lista de distribucin solicitada."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2644,15 +2644,15 @@ msgstr ""
" de este usuario en otras suscripciones.\n"
" No obstante, se han cambiado los datos para esta."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Las direcciones no coinciden!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Ya ests usando esa direccin de correo electrnico"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2666,31 +2666,31 @@ msgstr ""
"cambiar cualquier otra lista de distribucin que contenga la direccin\n"
"%(safeuser)s. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "La direccin nueva ya est dada de alta: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Las direcciones no debern estar en blanco"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Se le ha enviado un mensaje de confirmacin a %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Ha proporcionado una direccin de correo incorrecta"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Se ha proporcionado una direccin de correo ilegal"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s ya est suscrito a la lista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2701,12 +2701,12 @@ msgstr ""
" por favor, pngase en contacto con el propietario\n"
" de la lista en %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr ""
"Se ha cambiado el nombre y apellidos del suscriptor satisfactoriamente."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2715,15 +2715,15 @@ msgstr ""
"El administrador de la lista puede que no vea las otras\n"
" suscripciones de este usuario."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Las claves nodebern estar en blanco"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Las claves no coinciden!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2733,12 +2733,12 @@ msgstr ""
" de este usuario en otras suscripciones. No obstante,\n"
" se ha cambiado la clave en esta lista de distribucin."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Se ha cambiado la clave satisfactoriamente."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2748,11 +2748,11 @@ msgstr ""
" verificacin que est debajo del botn\n"
" <em>Desuscribirs</em>. No ha sido dado de baja!."
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultados de la desuscripcin"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2764,7 +2764,7 @@ msgstr ""
" para su aprobacin. Recibir una notificaci\n"
" una vez que el moderador haya tomado una decisin"
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2780,7 +2780,7 @@ msgstr ""
" baja, por favor pngase en contacto con los propietarios de\n"
" la lista en %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2792,7 +2792,7 @@ msgstr ""
" otras suscripciones. No obstante, se han cambiado\n"
" los datos de la suscripcin en esta lista."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2803,7 +2803,7 @@ msgstr ""
"esta lista, sin embargo el resto de sus opciones han sido definidas con\n"
"xito."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2815,63 +2815,63 @@ msgstr ""
"la opcin de entrega no se ha activado. Sin embargo, el resto \n"
"de sus opciones se ha cambiado correctamente."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Ha definido sus opciones con xito."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Puede que obtenga una ltima recopilacin."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Si, realmente quiero darme de baja</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Cambiar mi contrasea"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Listar mis otras suscripciones"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Enviarme mi contrasea por email"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "contrasea"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Salir"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Confirmar mis cambios"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "das"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "da"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Cambiar mi direccin y mi nombre"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>No se han definido temas</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2881,19 +2881,19 @@ msgstr ""
"Est suscrito a la lista con la direccin <em>%(cpuser)s</em> respetando "
"maysculas y minsculas."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Lista %(realname)s: pgina de entrada de preferencias de suscriptor"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "direccin de correo electrnico y su "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Lista %(realname)s: opciones de suscripcin de %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2933,19 +2933,19 @@ msgstr ""
" entre satisfactoriamente)."
# In this entry insert a space at the end of string, it will be stripped.
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Direccin de correo-e: "
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Clave:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entrar"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2960,11 +2960,11 @@ msgstr ""
" realizar esta accin por correo electrnico, lea\n"
" las instrucciones en el mensaje de confirmacin)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Recordatorio de la clave"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2972,27 +2972,27 @@ msgstr ""
"Al pulsar con el ratn el botn <em>Recordar</em>,\n"
" se le mandar la clave por correo electrnico."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Recordar"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<perdido>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "El tema solicitado no es vlido: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalles del filtrado de tpicos"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nombre:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Patrn (como una expresin regular):"
@@ -5276,11 +5276,11 @@ msgstr "No haba recopilacin que enviar."
msgid "Invalid value for variable: %(property)s"
msgstr "Valor incorrecto para la variable: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Direccin de correo-e incorrecta de la opcin %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5295,7 +5295,7 @@ msgstr ""
" <p>Su lista podra no funcionar correctamente hasta que\n"
" corrija el problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6374,7 +6374,16 @@ msgstr ""
"El atributo <b>real_name</b> no se ha cambiado! Tiene que diferenciarse \n"
"del nombre de la lista solo en cambios a maysculas o minsculas."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"El atributo <b>real_name</b> no se ha cambiado! Tiene que diferenciarse \n"
+"del nombre de la lista solo en cambios a maysculas o minsculas."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8984,39 +8993,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Mensaje rechazado por activar una regla de filtrado"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Resumen de %(realname)s, Vol %(volume)d, Envo %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "Cabecera digest"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Cabecera del resumen (digest)"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Asuntos del da:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Today's Topics (%(msgcount)d mensajes)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Mensaje descartado por el filtro de contenido]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "pi de pgina del digest"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Pi de pgina del digest"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fin de "
@@ -9169,39 +9178,39 @@ msgstr ""
"Hace falta su confirmacin para abandonar la lista de distribucin "
"%(listname)s."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
"las suscripciones a %(realname)s necesitan el visto bueno del administrador"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Notificacin de suscripcin a %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "las bajas a %(realname)s necesitan el visto bueno del moderador"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Notificacin de desuscripcin a %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Notificacin de desuscripcin a %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"La suscripcin a %(name)s requiere aprobacin por\n"
"parte del administrador"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "ltima notificacin de autorespuesta de hoy"
@@ -9388,7 +9397,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9402,29 +9411,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9487,47 +9510,56 @@ msgstr ""
"los\n"
"ficheros puede ser `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Ya est suscrito: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Direccin de correo electrnico incorrecta/invlida: lnea en blanco"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Direccin de correo electrnico incorrecta/invlida: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Direccin hostil (caracteres no vlidos): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "suscrito: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "suscrito: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argumento incorrecto a -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argumento incorrecto a -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"No puedo leer a los suscriptores regulares y a los no regulares desde la "
"entrada estndar."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "No existe tal lista: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/et/LC_MESSAGES/mailman.po b/messages/et/LC_MESSAGES/mailman.po
index 6f5c44d7..bf424f43 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -13,157 +13,157 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.9.1\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "suurus pole teada"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i baiti "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "teemat pole"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at"
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Eelmine kiri:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Jrgmine kiri:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "lim"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "teema"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "kuupev"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Arhiiv on thi. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip pakitud tekst %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "snumi lisamine arhiivi\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Aprill"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Veebruar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Jaanuar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mrts"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "August"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Juuli"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Juuni"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mai"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Detsember"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktoober"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Esimene"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Neljas"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Teine"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Kolmas"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)i %(ord)s kvartal"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Ndal, mis algab esmaspeval %(day)i %(month)s %(year)i "
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Limede indeksi tekitamine\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Kirja %(seq)s HTMLi uuendamine"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "artiklifail %(filename)s on puudu!"
@@ -225,7 +225,7 @@ msgstr " Viimase tagastuse kuupevs %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(teemat pole)"
@@ -243,7 +243,7 @@ msgid "Administrator"
msgstr "omaniku"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -252,7 +252,7 @@ msgstr "Sellist listi pole: <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -262,7 +262,7 @@ msgstr "Viga"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -275,7 +275,7 @@ msgid "Authorization failed."
msgstr "Autoriseerimine ebannestus."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -292,7 +292,7 @@ msgstr ""
"kasutada siis llitage vhemalt ks neist valikutest sisse."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Hoiatus: "
@@ -321,11 +321,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s listid - Administreerimine"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Tere tulemast!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -379,16 +379,16 @@ msgstr "listi infoleht"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Ksimused ja kommentaarid saada "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "List"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Kirjeldus"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[kirjeldus puudub]"
@@ -538,7 +538,7 @@ msgstr "Teema nimetus:"
msgid "Regexp:"
msgstr "Regulaaravaldis:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Kirjeldus:"
@@ -699,7 +699,7 @@ msgid "nodupes"
msgstr "vldi koopiat"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "kokkuvte"
@@ -731,7 +731,7 @@ msgstr "T"
msgid "notmetoo"
msgstr "v.a. autor"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "peatatud"
@@ -852,7 +852,7 @@ msgstr "Lisada aadressid kohe liikmete nimekirja vi saata kigepealt kutsed?"
msgid "Invite"
msgstr "Saata kutsed"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Lisada kohe"
@@ -1079,7 +1079,7 @@ msgstr "Vigane meiliaadress"
msgid "Hostile address (illegal characters)"
msgstr "Keelatud mrke sisaldav meiliaadress"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1743,8 +1743,8 @@ msgstr ""
"\n"
"<p>Vi kliki<em>Thista</em> kui mber mtlesid."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Lahku listist"
@@ -2390,11 +2390,11 @@ msgstr "HTML muutmata."
msgid "HTML successfully updated."
msgstr "HTML salvestatud."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listid serveris %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2402,7 +2402,7 @@ msgstr ""
"<p>Serveris %(hostname)s ei ole htegi avalikku\n"
" %(mailmanlink)s listi."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2416,11 +2416,11 @@ msgstr ""
"tellimiseks,\n"
" tellimuse katkestamiseks vi tellimuse omaduste muutmiseks."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "right"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2430,11 +2430,11 @@ msgstr ""
"Nimekirjast puuduva listi ldinfo lehe vaatamiseks lisage URLi lppu '/' ja "
"%(adj)s listi nimi. <p>Listi omanikud psevad "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "selle lingi kaudu "
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2442,11 +2442,11 @@ msgstr ""
"oma listi seadistama.\n"
"<p>Ksimuste ja kommentaaridega prduge "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Muuda seadeid"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Vali keel"
@@ -2468,17 +2468,17 @@ msgstr "Aadress puudub"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Viga aadressis: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Sellist liiget pole: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Kinnitusmeil on saadetud."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2487,58 +2487,58 @@ msgstr ""
"Teie tellimuse lpetamise soovd edastatati listi omanikule\n"
"lbivaatuseks."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Sinu parool saadeti sulle meiliga."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Autoriseerimine ebannestus."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Sinu parool saadeti sulle meiliga."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "%(safeuser)s listide tellimused serveris %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "Kliki mnel lingil, et muuta oma listi tellimuse seadistusi."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Aadressid ei olnud hesugused!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Sa ju kasutad juba seda aadressi"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2551,31 +2551,31 @@ msgstr ""
"igal pool, siis peale sinu kinnitust, vahetatakse aadress\n"
"ra kigis listides mille liige %(safeuser)s preagu on."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "%(newaddr)s on juba selle listi tellja."
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Aadressid ei tohi olla thjad"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Kinnitus saadeti aadressile %(newaddr)s."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Vigane meiliaadress"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Vigane meiliaadress"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s on juba selle listi tellinud."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2586,11 +2586,11 @@ msgstr ""
"see on eksitus, siis vtke palun hendust listi omanikuga aadressil \n"
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Liikme nimi on vahetatud. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2599,15 +2599,15 @@ msgstr ""
"Listi administraator on ksikkirjade saatmise keelanud ja seetttu\n"
"ei saa sa neid tellida. Kik teised sinu tehtud valikud aga salvestati."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Paroolid ei tohi olla thjad"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Paroolid ei olnud hesugused!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2617,12 +2617,12 @@ msgstr ""
"Listi administraator on ksikkirjade saatmise keelanud ja seetttu\n"
"ei saa sa neid tellida. Kik teised sinu tehtud valikud aga salvestati."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Parool on edukalt vahetatud."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2632,11 +2632,11 @@ msgstr ""
"<em>Lpeta tellimus</em> nupu all. Tellimus ei ole veel\n"
"lpetatud!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Tellimuse lpetamine"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2647,7 +2647,7 @@ msgstr ""
"lbivaatuseks. Niipea kui ta on oma otsuse teinud,teatatakse\n"
"sellest sulle."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2661,7 +2661,7 @@ msgstr ""
"Ksimustega prdu listi omaniku poole aadressil\n"
"%(owneraddr)s"
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2669,7 +2669,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2679,7 +2679,7 @@ msgstr ""
"Listi omanik on kokkuvtete koostamise keelanud ja seetttu\n"
"ei saa sa neid tellida. Kik teised valikud aga salvestati."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2689,63 +2689,63 @@ msgstr ""
"Listi administraator on ksikkirjade saatmise keelanud ja seetttu\n"
"ei saa sa neid tellida. Kik teised sinu tehtud valikud aga salvestati."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Sinu seadistused on salvestatud."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Vimalik, et saate veel he viimase kokkuvtte."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Jah, ma tahan tellimust katkestada</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Vaheta parooli"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Nita mulle mu teisi tellimusi"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Meili mulle mu parool"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "parool"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Logi vlja"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Salvesta"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "peva"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "pev"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Muuda minu aadressi ja nime"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>htegi teemat pole mratud</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2755,19 +2755,19 @@ msgstr ""
"See list on teil tellitud jrgmise tstutundliku (??) aadressiga\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "List %(realname)s: Logi sisse"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "meiliaadress ja "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Listi %(realname)s seadistused liikmele %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2795,19 +2795,19 @@ msgstr ""
"brauseril lubama sellest saidist kpsiseid vastu vtta. Vastasel korral\n"
"muudatusi ei salvestata."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-posti aadress:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Parool:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Logi sisse"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2820,11 +2820,11 @@ msgstr ""
"kklikkima (kinnitada saab ka meili teel, vastav juhend sisaldub samuti\n"
"selles kirjas)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Parooli meeldetuletus"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2832,27 +2832,27 @@ msgstr ""
"Kui klikid nupul <em>Tuleta meelde</em>, saadetakse sinu\n"
"parool su lle meiliga."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Tuleta meelde"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<puudub>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Soovitud teema on vigane: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Teemafiltri info"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nimi:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Mall (regulaaravaldis):"
@@ -4931,11 +4931,11 @@ msgstr "Kokkuvtet polnud vimalik saata."
msgid "Invalid value for variable: %(property)s"
msgstr "Vigane vrtus muutujale: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Vigane meiliaadress seades %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4949,7 +4949,7 @@ msgstr ""
"<code>%(bad)s</code>\n"
"<p>Listi t vib olla hiritud kuni probleemi krvaldamiseni."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5884,7 +5884,18 @@ msgstr ""
"suuri ja vikesi\n"
" thti. "
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>real_name</b> muutust ei salvestatud!\n"
+" See peab olema identne listi nimega, varieerida tohib ainult "
+"suuri ja vikesi\n"
+" thti. "
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8181,39 +8192,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Filter pidas kirja kinni"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s kokkuvte, kide %(volume)d, number %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "kokkuvtte pis"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Kokkuvtte pis"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Tnased teemad:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Tnased teemad (%(msgcount)d kirja)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Sisufilter kustutas kirja]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "kokkuvtte jalus"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Kokkuvtte jalus"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Lpp"
@@ -8362,36 +8373,36 @@ msgstr "%(listname)s listi tellimiseks on tarvis sinu kinnitust"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr " %(listname)s listist lahkumiseks on tarvis sinu kinnitust"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " from %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "Listi %(realname)s tellimiseks on vaja toimetaja nusolekut."
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s tellimuse teavitus"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "tellimuse lpetamiseks on vaja omaniku nusolekut."
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s tellimuse lpetamise teavitus"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s tellimuse lpetamise teavitus"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "Listi %(name)s tellimiseks on vaja listi omaniku nusolekut."
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Viimane automaatvastus tnaseks"
@@ -8577,7 +8588,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s%(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8591,29 +8602,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8673,45 +8698,54 @@ msgstr ""
"tohib \n"
"olla `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "%(member)s on juba liige"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Vigane meiliaadress: thi rida"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Vigane meiliaadress: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Aadress sisaldab keelatud mrke: %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Liidetud: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Liidetud: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Vigane -w/--welcome-msg argument: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Vigane -a/--admin-notify argument: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr "ksikirjade ja kokkuvtete tellijaid ei saa korraga sisestada."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Selle nimega listi pole: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/eu/LC_MESSAGES/mailman.po b/messages/eu/LC_MESSAGES/mailman.po
index 18288731..2b747d4d 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -19,155 +19,155 @@ msgstr ""
"Generated-By: pygettext.py 1.4\n"
"X-Generator: Poedit 1.8.7.1\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "Tamaina ez da eskuragarri"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i byte"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Gairik gabea"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " a bildua "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "Aurreko mezua (harian):"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "Hurrengo mezua (harian):"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "haria"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "gaia"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "egilea"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Une honetan ez dago fitxategirik</P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip-kin komprimitutako testu %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "%(sz)s testua"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "artikuluen fitxategiak kalkulatzen\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Apirila"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Otsaila"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Urtarrila"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Martxoa"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Abuztua"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Uztaila"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Ekaina"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maiatza"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Abendua"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Azaroa"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Urria"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Iraila"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Lehenengo"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Laugarren"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Bigarren"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Hirugarren"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)i. urteko %(ord)s lauhilebetekoa"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(year)i-ko %(month)s"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "%(year)i-ko %(month)s-ren %(day)i astearen astelhenean"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(year)i-ko %(month)s-ren %(day)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Harien araberako aurkibidea kalkulatzen\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr " %(seq)s artikuluaren HTML kodea eguneratzen"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "artikuluari lotutako %(filename)s fitxategia ezin da aurkitu!"
@@ -229,7 +229,7 @@ msgstr " Zugandik jasotako azken errebotea %(date)s-datakoa zen."
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(gairik gabea)"
@@ -247,7 +247,7 @@ msgid "Administrator"
msgstr "Kudeatzailearen"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -256,7 +256,7 @@ msgstr "<em>%(safelistname)s</em> zerrendarik ez dago"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -266,7 +266,7 @@ msgstr "Errorea"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -279,7 +279,7 @@ msgid "Authorization failed."
msgstr "Baimentzerakoan hutsa."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "Formularioa iraungi da. (eskaeraren ziurtasun froga)"
@@ -298,7 +298,7 @@ msgstr ""
" bidaliko."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Kontuz: "
@@ -327,11 +327,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s Zerbitzariko Posta Zerrendak - Kudeaketarako Loturak"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Ongi etorri!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -385,16 +385,16 @@ msgstr "posta zerrendaren informazio orokorraren orrialdea"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Bidali galdera eta iradokizunak "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Zerrenda"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Azalpena"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[ez dago azalpenik]"
@@ -549,7 +549,7 @@ msgstr "Gaiaren izena:"
msgid "Regexp:"
msgstr "Espresio erregularra:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Deskribapena:"
@@ -708,7 +708,7 @@ msgid "nodupes"
msgstr "bikoitzik ez"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "bilduma"
@@ -740,7 +740,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "niri ez"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "postagabea"
@@ -872,7 +872,7 @@ msgstr "Erabiltzaile hauek orain harpidetu edo gonbidatu?"
msgid "Invite"
msgstr "Gonbidatu"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Harpidetu"
@@ -1107,7 +1107,7 @@ msgstr "ePosta helbide okerra/baliogabea"
msgid "Hostile address (illegal characters)"
msgstr "Gaizkieratutako helbidea (karakterrak okerrak)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Blokeatutako helbidea (matched %(pattern)s)"
@@ -1779,8 +1779,8 @@ msgstr ""
" <p>Edo sakatu <em>Bertan Behera Utzi</em> botoia\n"
" eskaera ezereztatzeko."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Zerrenda utzi"
@@ -2446,11 +2446,11 @@ msgstr "HTML-a aldatu gabe"
msgid "HTML successfully updated."
msgstr "HTML kodea behar bezala aldatu da."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s >erbitzariko ePosta zerrendak"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2458,7 +2458,7 @@ msgstr ""
"<p>Une honetan ez dago %(mailmanlink)s posta zerrenda publikorik\n"
" %(hostname)s zerbitzarian."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2473,11 +2473,11 @@ msgstr ""
" jaso, harpidetu (do harpidetza ezabatu) edo zure harpidetza\n"
" obespenak aldatzeko."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "zuzena"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2489,11 +2489,11 @@ msgstr ""
" zerrenda izena erantsiz.\n"
" <p>Zerrenda kudeatzailea bazara, orri hau bisita dezakezu: "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "zerrenden kudeaketarako orri nagusia."
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2502,11 +2502,11 @@ msgstr ""
" <p>Eposta zerrenda erabilpenarekin arazorik izaten ari bazara "
"arremanetan jarri"
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Aukerak Editatu"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Orrialde hau hemen ikusi:"
@@ -2528,16 +2528,16 @@ msgstr "Ez duzu helbiderik adierazi!"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "ePosta helbide okerra: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Harpidedun ezezaguna: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Zerrendako harpideduna bazara, konfirmazio mezua bidali dugu."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
@@ -2545,7 +2545,7 @@ msgstr ""
"Zerrenda uzteko egindako eskaera kudeatzaileari bidali zaio gainbegira\n"
"dezan."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
@@ -2553,15 +2553,15 @@ msgstr ""
"Zerrendako harpideduna bazara,\n"
" pasahitza bidali dizugu epostaz."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Egiaztapenak huts egin du."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Zure pasahitzaren gogorazle bat epostaz bidalia izan zaizu."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2569,17 +2569,17 @@ msgstr ""
"Baliteke zerrendaren administratzaileak erabiltzaile honen\n"
" beste harpidetzak ezin ikustea."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Oharra: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr ""
"%(hostname)s zerbitzariko posta zerrendetako %(safeuser)s-ren hapidetza "
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2587,7 +2587,7 @@ msgstr ""
"Klikatu loturetako bat, hautatutako posta\n"
" zerrendaren aukeren orrialdera joateko."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2598,15 +2598,15 @@ msgstr ""
"ere,\n"
" zerrenda honetako harpidetza aldatu da."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Helbideak ez datoz bat!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Dagoeneko ePosta helbide hori darabizu"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2619,31 +2619,31 @@ msgstr ""
"ere eskatu duzu. Baieztatu ondoren, %(safeuser)s helbidea duten beste\n"
"zerrenda guztiak ere aldatu egingo dira."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Helbide berria zerrendakide da dagoeneko: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Helbideak ezin dira hutsik egon"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Egiaztapen mezu bat bidali da %(newaddr)s helbidera. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Emandako ePosta helbidea okerra da"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Emandako ePosta helbidea okerra da."
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s dagoeneko zerrendako partaide da."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2654,11 +2654,11 @@ msgstr ""
"jabeari\n"
"%(owneraddr)s helbidera."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Zerrendakidearen izen-abizenak behar bezala aldatu dira."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2666,15 +2666,15 @@ msgstr ""
"Zerrendaren kudeatzaileak ezin du erabiltzaile baten\n"
" pasahitza aldatu."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Pasahitzak ezin dira hutsik egon"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Pasahitzak ez datoz bat!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2684,12 +2684,12 @@ msgstr ""
" beste zerrendetako pasahitza aldatu. Aldiz, zerrenda\n"
" honetako pasahitza aldatu du."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Pasahitza zuzen aldatu da."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2699,11 +2699,11 @@ msgstr ""
" egiaztapen eremua aktibatu egin behar duzu.\n"
" Oraindik ez duzu zerrenda utzi!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Harpidetza uztearen emaitzak"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2715,7 +2715,7 @@ msgstr ""
" Berak jakinaraziko dizu azkenengo erabakia\n"
" zein den."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2730,7 +2730,7 @@ msgstr ""
" idatzi, mesedez, zerrenda jabeari helbide honetara:\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2741,7 +2741,7 @@ msgstr ""
" beste harpidetzen aukerak aldatu ezin izatea. Hala ere,\n"
" zerrenda honetako aukerak aldatu dira."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2752,7 +2752,7 @@ msgstr ""
" egin du; zure hautaketa beraz, ez da onartu. Dena dela, \n"
" gainontzeko aukerak behar bezala zehaztu dira."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2764,63 +2764,63 @@ msgstr ""
"konfiguratu.\n"
" Dena dela, gainontzeko aukerak behar bezala daude."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Zure erabiltzaile-aukerak behar bezala egokitu dituzu."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Baliteke azken mezu-bilduma bat jasotzea."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Bai, zerrenda utzi nahi dut</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Nire Pasahitza Aldatu"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Nire beste haridetzen zerrenda"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Bidali Pasahitza Nire ePosta Helbidera"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "pasahitza"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Saioa amaitu"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Nire Aldaketak bidali"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "egun"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "egun"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Aldatu Nire Helbidea eta Izena"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Gaiak ez dira zehaztu</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2830,19 +2830,19 @@ msgstr ""
"Zerrenda honetara ondorengo helbidearekin harpidetuta zaude: (letra larri "
"eta txikiak errespetatuta) <em>%(cpuser)s</em>"
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s zerrenda: erabiltzailearen aukeren sarrera orria"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "ePosta helbidea eta "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s zerrenda: %(safeuser)s erabiltzailearen aukerak"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2873,19 +2873,19 @@ msgstr ""
" dira gauzatuko.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "ePosta helbidea:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Pasahitza:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Saioa hasi"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2900,11 +2900,11 @@ msgstr ""
" berretsi dezakezu zerrenda uzteko asmoa; irakurri\n"
" konfirmazio mezuan emango zaizkizun argibideak)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Pasahitz gogorarazlea"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2912,27 +2912,27 @@ msgstr ""
"<em>Gogoratu<em> botoia klikatuz, zure \n"
" pasahitza ePostaz bidaliko zaizu."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Gogoratu"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<galduta>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Eskatuta gaia ez da zuzena: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Gaien iragazkiaren xehetasunak"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Izena:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Patroia (adierazpen erregularra):"
@@ -5149,11 +5149,11 @@ msgstr "Ez zegoen mezu-bildumarik bidaltzeko."
msgid "Invalid value for variable: %(property)s"
msgstr "Aldagai honentzat balio okerra: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "%(property)s ezaugarriarentzat helbide okerra: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5168,7 +5168,7 @@ msgstr ""
" <p>Baliteke arazo hori konpondu arte zure zerrendak akatsak "
"izatea."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6209,7 +6209,16 @@ msgstr ""
"<b>admin_member_chunksize</b> atributua ez da aldatu!\n"
" Zenbaki osoa izan behar du, > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> atributua ez da aldatu!\n"
+" Zenbaki osoa izan behar du, > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8728,39 +8737,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Iragazki erregela batekin bat egiteagatik atzera botatako mezua"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Mezu-Bilduma, %(volume)d bilduma, %(issue)d. zenbakia"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "bilduma burua"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Bilduma burua"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Gaurko gaiak: \n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Gaurko gaiak (%(msgcount)d. mezua)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Eduki filtroak ezabatutako mezua]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "bilduma oina"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Bilduma oina"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Bilduma honen bukaera: "
@@ -8907,35 +8916,35 @@ msgstr "%(listname)s : harpidetzeko zure konfirmazioa behar dugu"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "%(listname)s : harpidetza uzteko zure konfirmazioa behar dugu"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " %(remote)s-(e)tik"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "%(realname)s zerrendan harpidetzeko moderatzailearen onespena behar da"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s harpidetza jakinarazpena"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "zerrenda uzteko moderatzailearen onespena behar da"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s zerrenda utzi izanaren jakinarazpena"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
msgid "%(realname)s address change notification"
msgstr "%(realname)s helbidea aldatu izanaren jakinarazpena"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "%(name)s zerrendako kide izateko, kudeatzailearen onespena behar da"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Gaurko azkenengo jakinarazpen automatikoa"
@@ -9121,7 +9130,8 @@ msgid ""
msgstr ""
"%(wday)s, %(mon)s %(day)2i, %(hh)02i:%(mm)02i:%(ss)02i, %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
+#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9134,29 +9144,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9222,47 +9246,56 @@ msgstr ""
"Gutxienez -r eta -d aukera bat ipini behar diozu. Bietako fitxategi\n"
"bat izan behar da`-'\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Dagoeneko harpidedun: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Eposta hebide okerra/baliogabea: errezkada txuria"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Eposta hebide okerra/baliogabea: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Helbide okerra (karaktere debekatuak): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Harpideduna: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Harpideduna: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "-w/--welcome-msg, argumentu okerra: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "-a/--admin-notify, argumentu okerra: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Sarrera orokorrean ezin dira irakurri ez harpidedun arrunten izenak, ez "
"bildumak jasotzen dituztenenak ere."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Zerrenda hau ez dago: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/fa/LC_MESSAGES/mailman.po b/messages/fa/LC_MESSAGES/mailman.po
index fe38a595..6df2a0db 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2013-07-20 13:40+0330\n"
"Last-Translator: \n"
"Language-Team: fa <translate@ifsug.org>\n"
@@ -14,61 +14,61 @@ msgstr ""
"X-Generator: Poedit 1.5.5\n"
"X-Poedit-Bookmarks: 935,-1,-1,-1,-1,-1,-1,-1,-1,-1\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "این اندازه موجود نیست"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i بایت "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "بدون موضوع"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr "در"
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "پیام پیشین:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "پیام بعدی:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "مبحث"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "موضوع"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "پدیدآور"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "تاریخ"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>اکنون هیچ بایگانی‌ای وجود ندارد </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "متن فشرده شده با جی‌زیپ %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "متن%(sz)s"
@@ -78,100 +78,100 @@ msgstr "متن%(sz)s"
# res + "\n"
# where res is the result of the determination. This message is intended to
# be seen if some error occurs to help locate the problem.
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "در حال جای‌دهی بایگانی‌های مقاله\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "آوریل"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "فوریه"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "ژانویه"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "مارس"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "اوت"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "ژوییه"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "ژوئن"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "می"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "دسامبر"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "نوامبر"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "اکتبر"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "سپتامبر"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "نخستین"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "چهارمین"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "دومین"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "سومین"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s چهارک %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "هفته‌ی از دوشنبه %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
# "computing threaded index": Is it: now(while) computing to produce the index which is based on threads? (like a list of thread names)
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "در حال پردازش نمایه‌ی مبحثی\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "در حال روزآمدسازی زنگام برای مقاله %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "پرونده‌ی مقاله %(filename)s گم شده است!"
@@ -238,7 +238,7 @@ msgstr "آخرین مورد واگشتی دریافت شده از شما در ا
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(بدون موضوع)"
@@ -256,7 +256,7 @@ msgid "Administrator"
msgstr "سرپرست"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -265,7 +265,7 @@ msgstr "چنین فهرستی وجود ندارد <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -275,7 +275,7 @@ msgstr "خطا"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -288,7 +288,7 @@ msgid "Authorization failed."
msgstr "اجازه‌دهی شکست خورد"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "مهلت زمانی پرکردن این فرم گذشته است. (بررسی جعل درخواست)"
@@ -306,7 +306,7 @@ msgstr ""
" اساسا غیر قابل استفاده خواهد بود."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "هشدار: "
@@ -335,11 +335,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "فهرست پستی %(hostname)s - پیوندهای سرپرست"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "خوش‌آمدید!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "میل‌من"
@@ -391,16 +391,16 @@ msgstr "صفحه‌ی نمای کلی فهرست پستی"
msgid "<p>(Send questions and comments to "
msgstr "<p>(سوال‌ها و نظرات را بفرستید به"
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "فهرست"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "توضیح"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[توضیحی موجود نیست]"
@@ -558,7 +558,7 @@ msgstr "نام سرفصل:"
msgid "Regexp:"
msgstr "عبارت باقاعده:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "توضیح:"
@@ -718,7 +718,7 @@ msgid "nodupes"
msgstr "غیر تکراری"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "یک‌جا"
@@ -753,7 +753,7 @@ msgstr "و"
msgid "notmetoo"
msgstr "خودم نه"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "ﺏﺩﻮﻧ ﺭﺍیﺎﻧﺎﻤﻫ"
@@ -884,7 +884,7 @@ msgstr "این اعضا را اکنون مشترک کنم یا دعوت‌شان
msgid "Invite"
msgstr "دعوت"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "اشتراک"
@@ -1116,7 +1116,7 @@ msgstr "نشانی رایانامه‌ی نادرست یا نا معتبر"
msgid "Hostile address (illegal characters)"
msgstr "نشانی خصومت‌آمیز (نویسه‌های غیرمجاز)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "نشانی تحریم‌شده (با %(pattern)s جور در آمد)"
@@ -1792,8 +1792,8 @@ msgstr ""
" <p>یا <em>لغو و نادیده‌گرفتن</em>را کلیک کنید تا این لغو اشتراک \n"
"لغو شود."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "لغو اشتراک"
@@ -2389,17 +2389,17 @@ msgstr "صفحه تغییر نکرده است."
msgid "HTML successfully updated."
msgstr ""
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr ""
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
msgstr ""
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2409,11 +2409,11 @@ msgid ""
" on your subscription."
msgstr ""
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "راست"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2421,21 +2421,21 @@ msgid ""
" <p>List administrators, you can visit "
msgstr ""
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "صفحه مرور کلی سرپرستی"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
msgstr ""
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "گزینه‌های ویرایش"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "این صفحه را ببینید در "
@@ -2457,17 +2457,17 @@ msgstr "نشانی‌ای وارد نشده است"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "نشانی رایا‌نامه‌ی غیرمجاز: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr ""
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "رایانامه‌ی تاییدیه، فرستاده شد"
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2476,7 +2476,7 @@ msgstr ""
"درخواست لغو اشتراک شما\n"
" جهت تایید، به سرپرست فهرست پیش‌سو شده‌است."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2485,30 +2485,30 @@ msgstr ""
"اگر عضوی از این فهرست باشید،\n"
" هم اکنون گذرواژه‌تان برای شما فرستاده شده است."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "اصالت‌سنجی شکست خورد."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "یادآوری‌کننده‌ی گذرواژه‌ی شما برایتان رایانامه شده است."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "یادداشت:"
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr ""
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2516,22 +2516,22 @@ msgstr ""
"روی یک لینک کلیک کنید تا صفحه‌ی گزینه‌های مربوط به\n"
" فهرست پستی مورد نظر خود را ببینید."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "نشانی‌ها همخوان نبودند"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "شما پیشاپیش در حال استفاده از این نشانی رایا‌نامه هستید"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2540,68 +2540,68 @@ msgid ""
"%(safeuser)s will be changed. "
msgstr ""
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr ""
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "نشانی‌ها نمی تواند خالی باشد"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "یک پیام تایید برای %(newaddr)s فرستاده شد."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "نشانی رایانامه‌ی وارد شده، نادرست است"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "نشانی رایا‌نامه وارد شده، غیرمجاز است"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s پیشاپیش، عضو این فهرست می‌باشد."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
" the list owners at %(owneraddr)s."
msgstr ""
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "نام عضو با موفقیت عوض شد."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
msgstr ""
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "گذرواژه‌ها نباید خالی باشد"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "گذرواژه‌ها مطابقت ندارد!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
" password for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "گذرواژه با موفقیت عوض شد."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2611,11 +2611,11 @@ msgstr ""
" دکمه‌ی <em>لغو اشتراک</em> تایید کنید. \n"
" شما هنوز لغو اشتراک نشده اید!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "نتایج لغو اشتراک"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2623,7 +2623,7 @@ msgid ""
" decision."
msgstr ""
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2641,7 +2641,7 @@ msgstr ""
"تماس بگیرید:\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2649,7 +2649,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2657,7 +2657,7 @@ msgid ""
" other options have been set successfully."
msgstr ""
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2665,82 +2665,82 @@ msgid ""
" your other options have been set successfully."
msgstr ""
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "شما با موفقیت گزینه‌های خود را مشخص کردید."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "ممکن است فقط یک رایانامه‌ی یک‌جای دیگر دریافت کنید."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>بله، واقعاً می‌خواهم لغو اشتراک کنم</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "تغییر گذرواژه‌ی من"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "دیگر اشتراک‌های من"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "گذرواژه‌ی مرا برایم رایانامه کن"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "گذرواژه"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "خروج از سیستم"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "فرستادن تغییرات مورد نظر من"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "روز"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "روز"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr ""
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "نشانی و نام مرا تغییر بده"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>هیچ سرفصل تعریف نشده است</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
"<em>%(cpuser)s</em>."
msgstr ""
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "فهرست %(realname)s: صفحه‌ی ورود به گزینه‌های اعضا"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "نشانی رایا‌نامه و "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr ""
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2770,19 +2770,19 @@ msgstr ""
" عمل‌نخواهدکرد.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "نشانی رایا‌نامه:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "گذرواژه:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "ورود به سیستم"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2791,37 +2791,37 @@ msgid ""
" message)."
msgstr ""
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "یادآوری گذرواژه"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr ""
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "یادآوری کن"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr ""
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "سرفصل درخواست‌شده، معتبر نیست: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "جزئیات پالایه‌ی سرفصل"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "نام:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr ""
@@ -4511,11 +4511,11 @@ msgstr "هیچ رایانامه‌ی یک‌جایی برای فرستادن،
msgid "Invalid value for variable: %(property)s"
msgstr "مقدار نامعتبر برای متغیر: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "نشانی رایانامه‌ی نادرست برای گزینه‌ی %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4525,7 +4525,7 @@ msgid ""
" problem."
msgstr ""
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5256,7 +5256,13 @@ msgid ""
" changed! It must be an integer > 0."
msgstr ""
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -7154,39 +7160,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "این پیام به‌خاطر مطابقت با قواعد پالایش، پس‌زده‌شد"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "سربرگ حالت یک‌جا"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "سربرگ حالت یک‌جا"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "سرفصل‌های امروز:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "سرفصل‌های امروز (%(msgcount)d پیام)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[این پیام توسط پالایه محتوایی، رد شد]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "پاورقی حالت یک‌جا"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "پاورقی حالت یک‌جا"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "پایان "
@@ -7313,36 +7319,36 @@ msgstr "برای پیوستن به فهرست پستی %(listname)s نیاز ب
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "برای ترک فهرست پستی %(listname)s نیاز به تایید شما وجود دارد."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr ""
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "برای اشتراک در %(realname)s نیاز به تایید میان‌دار است"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "آگاه‌سازی از اشتراک%(realname)s "
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "برای لغو اشتراک، تایید میان‌دار لازم است."
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr ""
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "آگاه‌سازی از اشتراک%(realname)s "
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "برای اشتراک در %(name)s نیاز به تایید سرپرست است."
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "آخرین آگاه‌سازی پاسخ‌گویی خودکار امروز"
@@ -7519,7 +7525,7 @@ msgid ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
msgstr ""
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -7532,29 +7538,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -7568,45 +7588,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "پیشاپیش عضو است: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "مشترک شد: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "مشترک شد: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "چنین فهرستی وجود ندارد: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/fi/LC_MESSAGES/mailman.po b/messages/fi/LC_MESSAGES/mailman.po
index f7acf7c8..46fb0216 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -22,157 +22,157 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-1\n"
"Content-Transfer-Encoding: \n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "kokoa ei saatavilla"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i tavua "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Ei otsikkoa"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Edellinen viesti:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Seuraava viesti:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "ketju"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "aihe"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "kirjoittaja"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "pivmr"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Arkistoja ei ole.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip teksti%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Teksti%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "tutkitaan artikkeliarkistoa\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "huhtikuu"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "helmikuu"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "tammikuu"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "maaliskuu"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "elokuu"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "heinkuu"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "keskuu"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "toukokuu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "joulukuu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "marraskuu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "lokakuu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "syyskuu"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Ensimminen"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Neljs"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Toinen"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Kolmas"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)i %(ord)s neljnnes"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "%(day)i. %(month)sta %(year)i alkava viikko"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i. %(month)sta %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Luodaan viestipuuta\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Pivitetn HTML-sivut artikkelille %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "viestitiedosto %(filename)s puuttuu!"
@@ -234,7 +234,7 @@ msgstr " Viimeisin palautus osoitteestasi oli pivtty %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(ei otsikkoa)"
@@ -253,7 +253,7 @@ msgid "Administrator"
msgstr "Yllpitj"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -262,7 +262,7 @@ msgstr "Listaa <em>%(safelistname)s</em> ei ole olemassa."
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -272,7 +272,7 @@ msgstr "Virhe"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -285,7 +285,7 @@ msgid "Authorization failed."
msgstr "Kirjautuminen eponnistui."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -304,7 +304,7 @@ msgstr ""
" on kyttkelvoton."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Varoitus: "
@@ -331,11 +331,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s postituslistat - Yllpitjn linkit"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Tervetuloa!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -391,16 +391,16 @@ msgstr "postituslistan esittelysivu"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Lhet kysymykset ja kommentit osoitteeseen "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Kuvaus"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[ei kuvausta saatavilla]"
@@ -556,7 +556,7 @@ msgstr "Aiheen nimi:"
msgid "Regexp:"
msgstr "Pttyy:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Kuvaus:"
@@ -716,7 +716,7 @@ msgid "nodupes"
msgstr "nodupes"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "kokoelma"
@@ -748,7 +748,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "ei (metoo)"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "ei viestej"
@@ -878,7 +878,7 @@ msgstr "Liit nm kyttjt nyt tai kutsu heidt?"
msgid "Invite"
msgstr "Kutsu"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Liity"
@@ -1103,7 +1103,7 @@ msgstr "Vr/Virheellinen shkpostiosoite"
msgid "Hostile address (illegal characters)"
msgstr "Vahingollinen osoite (vri kirjaimia)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1773,8 +1773,8 @@ msgstr ""
" <p>Tai paina <em>Peruuta</em> peruuttaaksesi tmn\n"
"irtisanoutumispyynnn."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Irtisano"
@@ -2442,11 +2442,11 @@ msgstr "Sivua ei muutettu."
msgid "HTML successfully updated."
msgstr "HMTL on muutettu onnistuneesti."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s postituslistat"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2454,7 +2454,7 @@ msgstr ""
"<p>Palvelimella %(hostname)s ei ole julkisia\n"
" %(mailmanlink)s postituslistoja."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2468,11 +2468,11 @@ msgstr ""
" listietoja listasta, liittyksesi, erotaksesi, tai\n"
" muuttaaksesi liittymisasetuksiasi."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "oikea"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2485,11 +2485,11 @@ msgstr ""
" <p>Postituslistojen yllpidon yhteenvetosivulle pset tst "
"linkist, "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "listan yllpidon yhteenvetosivu"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2497,11 +2497,11 @@ msgstr ""
".\n"
" <p>Lhet kysymykset ja kommentit osoitteeseen "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Muokkaa valintoja"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Nyt tm sivu"
@@ -2523,40 +2523,40 @@ msgstr "Osoitetta ei annettu"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Virheellinen shkpostiosoite: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Ei sellaista jsent: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Vahvistusshkposti on lhetetty."
# #######
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
msgstr "Irtisanomispyyntsi on lhetetty listan yllpitjn hyvksyttvksi."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Muistutus salasanastasi on lhetetty shkpostiisi."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Tunnistautuminen eponnistui."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Muistutus salasanastasi on lhetetty shkpostiisi."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2564,16 +2564,16 @@ msgstr ""
"Listan yllpitjt eivt voi katsella kyttjn\n"
" tietoja toisissa postituslistoissa."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Viesti: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "%(safeuser)s, listojen jsenyydet palvelimella %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2581,7 +2581,7 @@ msgstr ""
"Napsauta linkki mennksesi tmn postituslistan\n"
" valintasivulle."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2591,15 +2591,15 @@ msgstr ""
" tai osoitteita toisissa postituslistoissa. Kuitenkin\n"
" muutokset ovat pivitetty thn listaan."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Osoitteet eivt tsmnneet!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Kytt jo sit shkpostiosoitetta"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2613,32 +2613,32 @@ msgstr ""
"mys\n"
"kaikki muut listat jotka sisltvt osoitteen %(safeuser)s muutetaan."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "%(newaddr)s on jo listan jsen."
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Osoitteet eivt voi olla tyhji"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Vahvistusviesti on lhetetty osoitteeseen %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Vr shkpostiosoite annettu"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Virheellinen shkpostiosoite"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s on jo listan jsen."
# #######
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2650,11 +2650,11 @@ msgstr ""
"hyv ja\n"
" \t\t ottakaa yhteytt listan omistajiin %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Jsenen nimen muutos on onnistunut."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2662,15 +2662,15 @@ msgstr ""
"Yllpitj ei voi vaihtaa kyttjn\n"
" salasanaa."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Salasanat eivt voi olla tyhji"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Salasanat eivt tsm!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2680,12 +2680,12 @@ msgstr ""
" muihin liittymisiin (subscriptions). Tst "
"huolimatta postituslistan salasana on vaihdettu.."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Salasana muutettu."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2695,11 +2695,11 @@ msgstr ""
" alla oleva <em>Irtisano</em> nppin.\n"
" Sinua ei ole irtisanottu!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Irtisanomisen tulokset"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2711,7 +2711,7 @@ msgstr ""
" listan pkyttjien ptksest.\n"
" "
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2726,7 +2726,7 @@ msgstr ""
" Jos sinulla on irtisanomistasi koskevia kysymyksi, ota\n"
" yhteytt listan omistajaan %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2737,7 +2737,7 @@ msgstr ""
" tmn kyttjn asetuksia toisissa postituslistoissa.\n"
" Kuitenkin asetukset tss postituslistassa ovat muutettu."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2748,7 +2748,7 @@ msgstr ""
" tlt listalta, joten jakelumrityksi ole asetettu. Sen \n"
" sijaan muut mritykset on asetettu."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2759,63 +2759,63 @@ msgstr ""
" tlt listalta, joten lhetysmritystsi ei ole asetettu. \n"
" Sen sijaan muut mritykset on asetettu."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Valintasi on asetettu onnistuneesti."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Saatat saada viel viimeisen lukemiston."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Kyll, haluan varmasti irtisanoutua</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Muuta salasanani"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Nyt muut liitymistietoni"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Lhet salasanani shkpostina minulle"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "salasana"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Kirjaudu ulos"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Lhet muutokseni"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "piv"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "piv"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Muuta osoitteeni ja nimeni"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Aihetta ei ole mritelty</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2825,19 +2825,19 @@ msgstr ""
"Olet liittynyt tlle listalle aihekohtaisella osoitteella\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s listan: jsenen sisnkirjautumissivu"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "shkpostiosoite ja"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s lista: jsenen %(safeuser)s valinnat"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2872,19 +2872,19 @@ msgstr ""
" (jonka net onnistuneen sisnkirjautumisen jlkeen).\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Shkpostiosoite:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Salasana:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Kirjaudu sisn"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2898,13 +2898,13 @@ msgstr ""
" vahvistaa shkpostina; katso ohjeet vahvistusviestist.\n"
" "
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Salasanan muistuttaja"
# Harrin osuus pttyy thn
# #######
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2912,27 +2912,27 @@ msgstr ""
"Klikkaamalla <em>Muistuta</em>-painiketta,\n"
" salasanasi lhetetn sinulle shkpostina."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Muistuta"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<puuttuu>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Pyydetty aihe ei kelpaa: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Aihesuodattimen tarkemmat tiedot"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nimi:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Merkkijono (snnllisen lausekkeena):"
@@ -5144,11 +5144,11 @@ msgstr "Ei koostetta mit lhett."
msgid "Invalid value for variable: %(property)s"
msgstr "Muuttujalla %(property)s on vr arvo."
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Virheellinen shkpostiosoite valinnalle %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5163,7 +5163,7 @@ msgstr ""
" <p>Listasi ei ehk toimi, ennenkuin korjaat tmn\n"
" ongelman."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6200,7 +6200,16 @@ msgstr ""
"<b>admin_member_chunksize</b> attribuuttia ei muutettu!\n"
" Arvon tulee olla numero ja suurempi kuin 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> attribuuttia ei muutettu!\n"
+" Arvon tulee olla numero ja suurempi kuin 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8750,39 +8759,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Viesti torjuttu suodatussnnn perusteella"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Lukemisto, Vol %(volume)d, Aihe %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "lukemiston otsikko"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Lukemiston otsikko"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Tmnpivn Aiheet:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Tmnpivn Aiheet (%(msgcount)d viesti)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Sisllnsuodatus hylksi viestin]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "lukemiston alatunniste"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Lukemiston alatunniste"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Loppu "
@@ -8931,36 +8940,36 @@ msgstr "Vahvista jsenyytesi postituslistalle %(listname)s ennen liittymist"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Vahvista jsenyytesti postituslistalle %(listname)s ennen poistumista"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " lhde: %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "listan %(realname)s tilaukset vaativat moderaattorin hyvksynnn"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "ilmoitus listan %(realname)s tilauksesta"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "listalta poistuminen vaatii moderaattorin hyvksynnn"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "ilmoitus listalta %(realname)s poistumisesta"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "ilmoitus listalta %(realname)s poistumisesta"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "listan %(name)s tilaaminen vaatii yllpitjn hyvksynnn"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Viimeinen automaattinen paluuviesti -ilmoitus tlle pivlle"
@@ -9146,7 +9155,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9160,29 +9169,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9238,45 +9261,54 @@ msgstr ""
"Ainakin yksi -r sek -d vaihtoehto on sytettv. Maksimissaan yksi "
"tiedostoista voi olla '-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Jo jsen: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Epkelpo/vr shkpostiosoite: tyhj rivi"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Epkelpo/vr shkpostiosoite: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Vihamielinen osoite (laittomia merkkej): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Tilattu: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Tilattu: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Vrt argumentit valitsimelle -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Vrt argumentit valitsimelle -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr "Ei voida lukea sek kooste- ett normaalijseni vakiosytteest."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Lista ei ole olemassa: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/fr/LC_MESSAGES/mailman.po b/messages/fr/LC_MESSAGES/mailman.po
index 856709ff..a27af323 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,157 +15,157 @@ msgstr ""
"Content-Transfer-Encoding: quoted-printable\n"
"Generated-By: pygettext.py 1.3\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "taille non disponible"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i octets "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sans objet"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Message prcdent:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Message suivant:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "enfilade"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "objet"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "auteur"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "date"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Actuellement, pas d'archives. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Text%(sz)s Gzips"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "chiffrage des articles d'archives\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Avril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Fvrier"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Janvier"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mars"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Aot"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Juillet"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Juin"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mai"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Dcembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Novembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Octobre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Premier"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Quatrime"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Second"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Troisime"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s trimestre %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "La semaine du lundi %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Mise jour des fichiers HTML pour l'article %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "le fichier article %(filename)s est manquant!"
@@ -227,7 +227,7 @@ msgstr " Le dernier rejet en provenance de votre adresse date du %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sans objet)"
@@ -245,7 +245,7 @@ msgid "Administrator"
msgstr "Administrateur"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -254,7 +254,7 @@ msgstr "Liste <em>%(safelistname)s</em> inexistante"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -264,7 +264,7 @@ msgstr "Erreur"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -277,7 +277,7 @@ msgid "Authorization failed."
msgstr "Echec de l'autorisation."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -296,7 +296,7 @@ msgstr ""
"votre liste de diffusion sera inutilisable."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Attention : "
@@ -324,11 +324,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Listes de diffusion de %(hostname)s - Liens de l'Admin"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Bienvenue !"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -383,16 +383,16 @@ msgstr "Panorama de la liste de diffusion"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Envoyez questions et commentaires "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Liste"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Description"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[pas de description disponible]"
@@ -550,7 +550,7 @@ msgstr "Nom du thme :"
msgid "Regexp:"
msgstr "Expression regulire :"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Description :"
@@ -710,7 +710,7 @@ msgid "nodupes"
msgstr "sansdoublons"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "group"
@@ -742,7 +742,7 @@ msgstr "R"
msgid "notmetoo"
msgstr "pas moi"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "noncourriel"
@@ -870,7 +870,7 @@ msgstr "Abonner ces utilisateurs maintenant ou les inviter ?"
msgid "Invite"
msgstr "Inviter"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Abonner"
@@ -1099,7 +1099,7 @@ msgstr "Adresse courriel Mauvaise/Invalide"
msgid "Hostile address (illegal characters)"
msgstr "Adresse hostile (caractres illgaux)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1781,8 +1781,8 @@ msgstr ""
"\t<p>Ou cliquez sur <em>Annuler et ignorer</em> pour annuler cette\n"
"\trequte de rsiliation."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Rsilier"
@@ -2458,11 +2458,11 @@ msgstr "Page inchange"
msgid "HTML successfully updated."
msgstr "HTML mis jour avec succs."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listes de diffusion sur %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2470,7 +2470,7 @@ msgstr ""
"<p>Il n'y a actuellement pas de listes de diffusion\n"
" %(mailmanlink)s publiques sur %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2485,11 +2485,11 @@ msgstr ""
"votre\n"
" abonnement ou changer les prfrences de votre abonnement."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "droite"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2501,11 +2501,11 @@ msgstr ""
"du nom de la liste ajoute.\n"
" <p>Administrateurs de liste, vous pouvez visiter "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "la page d'administration de la liste"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2513,11 +2513,11 @@ msgstr ""
" pour trouver l'interface de gestion de votre liste.\n"
" <p>Si vous avez des problmes d'utilisation des listes, contactez "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Modifier les Options"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Visualisez cette page en"
@@ -2539,17 +2539,17 @@ msgstr "Aucune adresse fournie"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Adresse courriel invalide : %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Abonn inconnu : %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Le courriel de confirmation a t envoy."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2558,22 +2558,22 @@ msgstr ""
"Votre requte de rsiliation d'abonnement a t envoye \n"
" l'administrateur de la liste pour approbation."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Un rappel de votre mot de passe vous a t envoy."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Echec de l'authentification."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Un rappel de votre mot de passe vous a t envoy."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2581,16 +2581,16 @@ msgstr ""
"L'administrateur de la liste n'a peut-tre pas vu \n"
"\t les autres abonnements de cet utilisateur."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Note :"
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Les abonnements de %(safeuser)s sur %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2598,7 +2598,7 @@ msgstr ""
"Cliquez sur un lien pour afficher la page de vos\n"
" options pour la liste demande."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2608,15 +2608,15 @@ msgstr ""
"\t ou les adresses des autres abonnements de cet utilisateur.\n"
"\t Nanmoins l'abonnement pour cette liste a t modifi."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Les adresses ne correspondent pas !"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Vous utilisez dj cette adresse courriel."
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2630,31 +2630,31 @@ msgstr ""
"listes de diffusion contenant l'adresse %(safeuser)s\n"
"seront modifies."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "La nouvelle adresse est dj abonne : %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Les adresses ne doivent pas tre vides"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Un message de confirmation a t envoy %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Mauvaise adresse courriel fournie"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Adresse courriel fournie invalide"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s est dj abonn la liste."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2664,11 +2664,11 @@ msgstr ""
"cette mesure est errone, veuillez contacter le propritaire de la\n"
"liste l'adresse %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Nom de l'abonn modifi avec succs. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2677,15 +2677,15 @@ msgstr ""
"L'administrateur de la liste n'a peut-tre pas vu \n"
"\t les autres abonnements de cet utilisateur."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Les mots de passe ne peuvent pas tre vides"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Les mots de passe ne correspondent pas !"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2695,12 +2695,12 @@ msgstr ""
" le mot de passe des autres abonnements de cet utilisateur.\n"
" Nanmoins le mot de passe pour cette liste a t modifi."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Mot de passe modifi avec succs."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2710,11 +2710,11 @@ msgstr ""
" cocher sous le bouton <em>Rsilier</em>. Votre abonnement\n"
" n'a pas t rsili !"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Rsultats de la rsiliation"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2725,7 +2725,7 @@ msgstr ""
" de la liste pour approbation. Vous recevrez un avis ds que les\n"
" modrateurs de la liste auront pris une dcision."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2741,7 +2741,7 @@ msgstr ""
"veuillez contacter\n"
" le gestionnaire de la liste l'adresse %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2752,7 +2752,7 @@ msgstr ""
"\t les options des autres abonnements de cet utilisateur.\n"
"\t Nanmoins les options pour cette liste ont t modifies."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2763,7 +2763,7 @@ msgstr ""
" vos options de distribution ne seront donc pas modifies,\n"
" contrairement aux autres."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2774,63 +2774,63 @@ msgstr ""
" pour cette liste, par suite toutes les options autre que\n"
" celle-ci ont ts sauvegardes avec succs."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Vos options ont ts paramtres avec succs."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Vous recevrez un dernier lot."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Oui, je veux vraiment rsilier mon abonnement</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Modifier mon mot de passe"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Afficher mes autres abonnements"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Envoyez-moi mon mot de passe par courriel"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "mot de passe"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Dconnecter"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Valider mes modifications"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "jours"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "jour"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(units)s %(days)d"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Modifier mon adresse et mon nom"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Aucun thme dfini</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2840,19 +2840,19 @@ msgstr ""
"Vous tes abonn cette liste avec une adresse de type prservation de la\n"
"casse <em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Liste %(realname)s : Page de login d'abonn"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "adresse courriel et "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Liste %(realname)s : options d'abonn de l'utilisateur %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2882,19 +2882,19 @@ msgstr ""
"de vos modifications ne prendra effet.\n"
"\t"
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Adresse courriel :"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Mot de passe :"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Connecter"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2907,11 +2907,11 @@ msgstr ""
"cliquer pour achever le processus de rsiliation (vous pourrez galement\n"
"le faire par courriel; lisez les instructions dans ledit message)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Rappel de mot de passe"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2919,27 +2919,27 @@ msgstr ""
"En cliquant sur le bouton <em>Rappel</em>, votre mot de passe vous sera\n"
"envoy par courriel."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Rappel"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<absent>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Le thme demand n'est pas valide : %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Dtails du filtre de thme"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nom :"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "modle (sous forme d'expression regulire) :"
@@ -5142,11 +5142,11 @@ msgstr "Pas de rsum envoyer."
msgid "Invalid value for variable: %(property)s"
msgstr "Valeur inavalide pour la variable : %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Adresse courriel invalide pour l'option %(property)s : %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5162,7 +5162,7 @@ msgstr ""
"jusqu' ce\n"
" que vous ayez corrig ce problme."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6237,7 +6237,16 @@ msgstr ""
"<b>admin_member_chunksize</b> attribut non modif !\n"
"\tDoit tre un entier > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> attribut non modif !\n"
+"\tDoit tre un entier > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8861,39 +8870,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Message rejet par correspondance avec une rgle de filtrage"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Lot %(realname)s, Vol %(volume)d, Parution %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "en-tte des messages groups"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "En-tte des messages groups"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Thmes du jour :\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Thmes du jour (%(msgcount)d messages)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Message rejet par filtrage de contenu]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "pied de page des remises groupes"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Pied de page des remises groupes"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fin de "
@@ -9045,37 +9054,37 @@ msgstr "Votre confirmation est ncessaire pour accder la liste %(listname)s"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Votre confirmation est ncessaire pour quitter la liste %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " partir de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "les abonnements %(realname)s ncessitent l'approbation du modrateur"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "notification d'abonnement de %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "Les rsiliations d'abonnements ncessitent l'approbation du modrateur"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "notification de rsiliation de %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "notification de rsiliation de %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"L'abonnement la liste %(name)s requiert une approbation de l'administrateur"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Dernier avis d'envoi de rponse automatique pour la journe"
@@ -9262,7 +9271,7 @@ msgid ""
msgstr ""
"%(wday)s %(day)2i %(mon)s %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9276,29 +9285,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9355,47 +9378,56 @@ msgstr ""
"Vous devez spcifier au moins l'une des options -r ou -d. Un seul des\n"
"fichiers peut tre `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Dj abonn : %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Adresse courriel Mauvaise/Invalide : ligne vide"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Adresse courriel Mauvaise/Invalide : %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Adresse hostile (caractres illgaux) : %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Abonn : %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Abonn : %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Mauvais argument fourni -w/--welcome-msg : %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Mauvais argument fourni -a/--admin-notify : %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Ne peut la fois lire, partir de l'entre standard, les abonns\n"
"normaux et les abonns de type digest."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Liste introuvable : %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/gl/LC_MESSAGES/mailman.po b/messages/gl/LC_MESSAGES/mailman.po
index 0238d08b..794d6391 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -16,157 +16,157 @@ msgstr ""
"Generated-By: pygettext.py 1.4\n"
"X-Generator: KBabel 1.11.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "tamaño non dispoñíbel"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sen asunto"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " en "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Mensaxe anterior:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Próxima mensaxe:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "fio"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "asunto"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Actualmente non hai ningún ficheiro. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Texto Gzip%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Texto%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "estase a calcular o arquivo dos artigos\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Abril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Febreiro"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Xaneiro"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marzo"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Agosto"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Xullo"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Xuño"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maio"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Decembro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Novembro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Outubro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Setembro"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primeiro"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Cuarto"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Segundo"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Terceiro"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s cuarto %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "A semana do %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Estase a calcular o índice dos fíos\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Estase a actualizar o código HTML do artigo %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "non se atopa o ficheiro %(filename)s asociado ao artigo"
@@ -228,7 +228,7 @@ msgstr "A última devolución que se recibiu foi hai %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sen asunto)"
@@ -246,7 +246,7 @@ msgid "Administrator"
msgstr "Administrador"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -255,7 +255,7 @@ msgstr "A rolda <em>%(safelistname)s</em> non existe"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -265,7 +265,7 @@ msgstr "Erro"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -278,7 +278,7 @@ msgid "Authorization failed."
msgstr "Produciuse un erro na autorización"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -298,7 +298,7 @@ msgstr ""
"empregar."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Aviso: "
@@ -326,11 +326,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Roldas de distribución en %(hostname)s - Ligazóns da administración"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Benvido/a!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -384,16 +384,16 @@ msgstr "páxina de información xeral das roldas de distribución"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Envíe as súas preguntas e comentarios a "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Rolda"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descrición"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[non hai ningunha descrición dispoñíbel]"
@@ -552,7 +552,7 @@ msgstr "Nome do tema:"
msgid "Regexp:"
msgstr "Expresión regular:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descrición:"
@@ -713,7 +713,7 @@ msgid "nodupes"
msgstr "sen duplicados"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "compilación"
@@ -745,7 +745,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "a min non"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "sen correo"
@@ -883,7 +883,7 @@ msgstr "Desexa subscribir este grupo agora ou convidalo despois?"
msgid "Invite"
msgstr "Convidar"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Subscribir"
@@ -1113,7 +1113,7 @@ msgstr "O enderezo de correo quer é incorrecto quer non é válido"
msgid "Hostile address (illegal characters)"
msgstr "Enderezo hostil (os caracteres non son válidos)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Enderezo expulsado (concorda %(pattern)s)"
@@ -1779,8 +1779,8 @@ msgstr ""
" <p>ou prema <em>Cancelar e rexeitar</em> para cancelar esta solicitude\n"
" de baixa."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Darse de baixa"
@@ -2453,11 +2453,11 @@ msgstr "Non se modificou o código de HTML"
msgid "HTML successfully updated."
msgstr "Actualizouse o código HTML con éxito"
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Roldas de distribución de %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2465,7 +2465,7 @@ msgstr ""
"<p>Non hai actualmente ningunha rolda de distribución de %(mailmanlink)s\n"
" que se anuncie publicamente en %(hostname)s. "
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2480,11 +2480,11 @@ msgstr ""
" subscribirse, darse de baixa ou mudar as preferencias da "
"subscrición."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "correcto"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2496,11 +2496,11 @@ msgstr ""
" \"/\" seguido polo nome %(adj)s da rolda.\n"
" <p>Pode visitar os administradores de roldas "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "a páxina xeral da administración de roldas"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2509,11 +2509,11 @@ msgstr ""
" <p>Se ten algún problema co emprego das roldas, póñase\n"
" en contacto con "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Editar as opcións"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Ver esta páxina en "
@@ -2535,17 +2535,17 @@ msgstr "Non se indicou un enderezo"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "O enderezo de correo electrónico é incorrecto: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Non existe ese subscritor: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Enviouse a mensaxe de confirmación."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2554,37 +2554,37 @@ msgstr ""
"A solicitude da súa baixa reenviouse ao administrador da\n"
"rolda para que lle de a aprobación."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Envióuselle un lembranza do seu contrasinal por correo electrónico.<p>"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Produciuse un erro na autenticación."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Envióuselle un lembranza do seu contrasinal por correo electrónico.<p>"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Nota: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Subscricións de %(safeuser)s en %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2592,22 +2592,22 @@ msgstr ""
"Prema co rato a ligazón para visitar a páxina\n"
" de opcións na rolda de distribución solicitada."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Os enderezos non coinciden"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Xa está a empregar ese enderezo de correo electrónico"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2621,56 +2621,56 @@ msgstr ""
"cambiará calquera outra rolda de distribución que conteña o enderezo\n"
"%(safeuser)s. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "O enderezo novo xa está dado de alta: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Os enderezos non poden estar en branco"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Envióuselles unha mensaxe de confirmación a %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Proporcionou un enderezo de correo que é incorrecto"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Proporcionouse un enderezo de correo que non é correcto"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s xa está subscrito á rolda."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
" the list owners at %(owneraddr)s."
msgstr ""
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Cambiouse, con éxito, o nome e mais os apelidos do subscritor."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
msgstr ""
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Os contrasinais non deberían estar en branco"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Os contrasinais non coinciden"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2682,12 +2682,12 @@ msgstr ""
"a opción de entrega non se activou. Pola contra, o resto \n"
"das opcións cambiáronse correctamente."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Cambiose a contrasinal satisfactoriamente."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2697,11 +2697,11 @@ msgstr ""
" verificación que está debaixo do botón\n"
" <em>Baixa</em>. Non se deu de baixa!."
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultados da baixa"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2713,7 +2713,7 @@ msgstr ""
" para a súa aprobación. Recibirá unha notificación\n"
" despois de o moderador tomar unha decisión"
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2728,7 +2728,7 @@ msgstr ""
" baixa, póñase en contacto cos propietarios da\n"
" rolda en %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2736,7 +2736,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2747,7 +2747,7 @@ msgstr ""
"esta rolda. Pola contra, o resto das opcións definíronse con\n"
"éxito."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2759,63 +2759,63 @@ msgstr ""
"a opción de entrega non se activou. Pola contra, o resto \n"
"das opcións cambiáronse correctamente."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Definiu as súas opcións con éxito."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "É posíbel que reciba unha última compilación."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Si, realmente quero darme de baixa</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Mudar o meu contrasinal"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Relacionar as outras subscricións"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Enviarme o contrasinal por correo"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "contrasinal"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Saír"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Enviar os cambios"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "días"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "día"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Mudar o meu enderezo e o meu nome"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Non se definiu ningún tema</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2825,19 +2825,19 @@ msgstr ""
"Está subscrito á rolda de correo co enderezo <em>%(cpuser)s</em> respectando "
"as maiúsculas e as minúsculas."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Rolda %(realname)s: páxina de entrada das opcións do subscritor"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "enderezo de correo electrónico e "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Rolda %(realname)s: opcións de subscrición de %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2875,19 +2875,19 @@ msgstr ""
" premer a ligazón <em>Desconexión</em> (que verá unha vez\n"
" entre satisfactoriamente)."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Enderezo de correo electrónico: "
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Contrasinal:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entrar"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2902,11 +2902,11 @@ msgstr ""
" realizar a confirmación por correo electrónico; lea\n"
" as instrucións na mensaxe de confirmación)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Lembranza do contrasinal"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2914,27 +2914,27 @@ msgstr ""
"Ao premer o botón <em>Lembrar</em>,\n"
" enviaráselle o contrasinal por correo electrónico."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Lembrar"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<perdido>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "O tema solicitado non é válido: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalles do filtro de temas"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nome:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Patrón (como unha expresión regular):"
@@ -5067,13 +5067,13 @@ msgstr "Non había ningunha recompilación que enviar."
msgid "Invalid value for variable: %(property)s"
msgstr "O valor da variable non é válido: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr ""
"O enderezo de correo electrónico é incorrecto na opción %(property)s: "
"%(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5088,7 +5088,7 @@ msgstr ""
" <p>A súa rolda podería non funcionar correctamente até que\n"
" corrixa o problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6038,7 +6038,17 @@ msgstr ""
" Ten que se diferenciar \n"
" do nome da rolda só por cambiar a maiúsculas ou minúsculas."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Non se cambiou o atributo <b>real_name</b>.\n"
+" Ten que se diferenciar \n"
+" do nome da rolda só por cambiar a maiúsculas ou minúsculas."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8571,39 +8581,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Resumo de %(realname)s, vol %(volume)d, envío %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "cabeceira das compilacións"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Cabeceira da recompilación"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Temas do día:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Temas do día (%(msgcount)d mensaxes)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "pé de páxina das compilacións"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Pé de páxina da recompilación"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fin de "
@@ -8750,38 +8760,38 @@ msgstr ""
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr ""
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "as subscricións a %(realname)s precisan a aprobación do administrador"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Notificación de subscrición a %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "as baixas de %(realname)s precisan a aprobación do moderador"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Notificación da baixa de %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Notificación da baixa de %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"a subscrición a %(name)s require a aprobación por\n"
"parte do administrador"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "última notificación da resposta automática de hoxe"
@@ -8968,7 +8978,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -8981,29 +8991,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9017,51 +9041,60 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Xa está subscrito: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
"O enderezo de correo electrónico quer é incorrecto quer non é válido: liña "
"en branco"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
"O enderezo de correo electrónico quer é incorrecto quer non é válido: "
"%(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Enderezo hostil (os caracteres non son válidos): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Subscribiuse: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Subscribiuse: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Hai un argumento incorrecto a -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Hai un argumento incorrecto a -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Non se puido ler os subscritores regulares e os non regulares desde a "
"entrada estándar."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Non existe esa rolda: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/he/LC_MESSAGES/mailman.po b/messages/he/LC_MESSAGES/mailman.po
index cacf9cb5..ae39bd76 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2007-04-05 21:33+0300\n"
"Last-Translator: Dov Zamir <linux@zamirfamily.com>\n"
"Language-Team: Hebrew\n"
@@ -16,157 +16,157 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "הגודל לא זמין"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i בייטים"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "ללא נושא"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " ב "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "המסר הקודם:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "המסר הבא:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "שיחה"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "נושא"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "מאת"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "תאריך"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>.כרגע אין ארכיונים</P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "טקסט הדחוס בעזרת gzip %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "טקסט%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "מחשב ארכיון של פריטים\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "אפריל"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "פברואר"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "ינואר"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "מרס"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "אוגוסט"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "יולי"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "יוני"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "מאי"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "דצמבר"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "נובמבר"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "אוקטובר"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "ספטמבר"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "הראשון"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "הרביעי"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "השני"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "השלישי"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "רבעון %(ord)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "השבוע שמתחיל ביום שני %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "מחשב אינדקס לפי שיחה\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "מעדכן את ה-HTML עבור פריט %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "חסר קובץ פריט %(filename)s!"
@@ -228,7 +228,7 @@ msgstr " ההחזר האחרון שהתקבל ממך היה בתאריך %(date)
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(ללא נושא)"
@@ -246,7 +246,7 @@ msgid "Administrator"
msgstr "מנהל"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -255,7 +255,7 @@ msgstr "אין רשימה בשם <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -265,7 +265,7 @@ msgstr "שגיאה"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -278,7 +278,7 @@ msgid "Authorization failed."
msgstr "האימות נכשל."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -296,7 +296,7 @@ msgstr ""
" אחרת רשימת הדיוור לא תהיה שימושית כלל."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "אזהרה: "
@@ -323,11 +323,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "רשימות הדיוור של %(hostname)s - קישורים מנהלתיים"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "ברוך בואך!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "דוור"
@@ -376,16 +376,16 @@ msgstr "עמוד הסיכום של רשימת הדיוור"
msgid "<p>(Send questions and comments to "
msgstr "<p>(שלח שאלות והערות אל "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "רשימה"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "תאור"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[אין תאור זמין]"
@@ -541,7 +541,7 @@ msgstr "שם הנושא:"
msgid "Regexp:"
msgstr "ביטוי רגולרי:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "תאור:"
@@ -701,7 +701,7 @@ msgid "nodupes"
msgstr "בלי כפולים"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "תקציר"
@@ -733,7 +733,7 @@ msgstr "ה"
msgid "notmetoo"
msgstr "ללא \"גםאני\""
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "ללא דואר"
@@ -856,7 +856,7 @@ msgstr "רשום או הזמן מנוים אלה כרגע?"
msgid "Invite"
msgstr "הזמן"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "רשום"
@@ -1081,7 +1081,7 @@ msgstr "כתובת דואר אלקטרוני לא חוקית/לא תקינה"
msgid "Hostile address (illegal characters)"
msgstr "כתובת אויינת (תווים לא חוקיים)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "כתובת חסומה (התאים ל-%(pattern)s)"
@@ -1739,8 +1739,8 @@ msgstr ""
"\n"
" <p>או לחץ <em>בטל ומחק</em>, כדי לבטל את בקשת הסרה זו."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "הסר מנוי"
@@ -2397,11 +2397,11 @@ msgstr "HTML לא השתנה"
msgid "HTML successfully updated."
msgstr "HTML עודכן בהצלחה"
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "רשימות הדיוור של %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2409,7 +2409,7 @@ msgstr ""
"<p>אין כרגע רשימות דיוור %(mailmanlink)s\n"
" על %(hostname)s שאינן מוסתרות."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2423,11 +2423,11 @@ msgstr ""
" אודות הרשימה, להרשם, לבטל הרשמה, או לשנות העדיפויות\n"
" במנוי שלך."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "ימין"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2439,11 +2439,11 @@ msgstr ""
" את שם %(adj)s הרשימה.\n"
" <p>מנהלי רשימות, אתם יכולים לבקר "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "בעמוד סקירה מנהלתית של הרשימה"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2451,11 +2451,11 @@ msgstr ""
" כדי למצוא את ממשק הניהול של הרשימה שלך.\n"
" <p>אם יש לך קושי בשימוש ברשימות, נא ליצור קשר עם "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "אפשריות עריכה"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "צפה בעמוד זה ב-"
@@ -2477,17 +2477,17 @@ msgstr "לא הוכנסה כתובת"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "כתובת דוא\"ל לא חוקית: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "אין כזה מנוי: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "הודעת אישור נשלחה."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2496,22 +2496,22 @@ msgstr ""
"בקשתך להסרה מרשימת המנוים הועברה אל\n"
" מנהל הרשימה לאישור."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "תזכורת עם סיסמתך נשלחה אליך."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "אימות נכשל"
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "תזכורת עם סיסמתך נשלחה אליך."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2519,16 +2519,16 @@ msgstr ""
"למנהל הרשימה אין אפשרות לצפות\n"
" במנויים אחרים של משתמש זה."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "הערה:"
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "מנויי רשימה של %(safeuser)s על %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2536,7 +2536,7 @@ msgstr ""
"לחץ על הקישור כדי לבקר בעמוד האפשריות\n"
" של הרשימה המבוקשת."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2546,15 +2546,15 @@ msgstr ""
" הכתובות של המנויים האחרים של משתמש זה. אבל\n"
" המנוי ברשימת דיוור זו עודכן."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "הכתובות לא זהות"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "אתה משתמש כבר בכתובת זו"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2566,31 +2566,31 @@ msgstr ""
"%(listname)s, יתכן שביצעת עדכון גלובלי של הכתובת. עם האישור,\n"
"כל רשימה אחרת המכילה את הכתובת %(safeuser)s תתעדכן."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "הכתובת החדשה הנה כבר מנויה: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "הכתובת לא יכולה להיות ריקה"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "נשלחה הודעת אישוד אל %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "הוקלדה כתובת דוא\"ל לא תקינה"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "הוקלדה כתובת דוא\"ל לא חוקית"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s הנה כבר מנויה ברשימה."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2599,11 +2599,11 @@ msgstr ""
"%(newaddr)s חסום מרשימה זו. אם לדעתך חסימה זו\n"
" שגויה, נא ליצור קשר עם בעלי הרשימה ב-%(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "שם המנוי עודכן בהצלחה"
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2612,15 +2612,15 @@ msgstr ""
"למנהל הרשימה אין אפשרות לצפות\n"
" במנויים אחרים של משתמש זה."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "הסיסמא לא יכולה להיות ריקה"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "הסיסמאות לא זהות!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2630,12 +2630,12 @@ msgstr ""
" של משתמש זה ברשימות אחרות. אבל\n"
" הסיסמא של רשימה זו עודכנה."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "הסיסמאות עודכנו בהצלחה"
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2645,11 +2645,11 @@ msgstr ""
" אתה צריך לאשר את בקשת ביטול המנוי על ידי\n"
" סימון בתיבת הסימון מתחת ללחצן <em>בטל מנוי</em>."
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "תצאות ביטול המנוי"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2660,7 +2660,7 @@ msgstr ""
" מפקחי הרשימה לאישור. תקבל הודעה לאחר\n"
" קבלת החלטה של מפקחי הרשימה."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2675,7 +2675,7 @@ msgstr ""
" לביטול המנוי שלך, נא ליצור קשר עם בעלי הרשימה\n"
" בכתובת %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2686,7 +2686,7 @@ msgstr ""
" את ההגדרות של משתמש זה ברשימות אחרות.\n"
" אבל עודכנו ההגדרות שלו ברשימה זו."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2697,7 +2697,7 @@ msgstr ""
" תקצירים ברשימה זו, לכן אפשרות זו לא הופעלה.\n"
" אבל ההגדרות האחרות עודכנו בהצלחה."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2709,63 +2709,63 @@ msgstr ""
" אפשרות זו לא הופעלה. אבל ההגדרות\n"
" האחרות עודכנו בהצלחה."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "ההגדרות שלך נקלטו בהצלחה"
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "יתכן שתקבל תקציר אחד אחרון"
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>כן, אני באמת רוצה לבטל את המנוי שלי</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "שנה את הסיסמא שלי"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "הצג את המנוים האחרים שלי"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "שלח את הסיסמא אלי בדוא\"ל"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "סיסמא"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "יציאה"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "הגש את שינוים שלי"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "ימים"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "יום"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(units)s %(days)d"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "שנה את כתובתי ואת שמי"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>לא הוגדרו נושאים</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2775,19 +2775,19 @@ msgstr ""
"הנך רשום לרשימה זו באמצעות הכתובת\n"
"(עם שמירת אותיות גדולות/קטנות) em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "רשימת %(realname)s: עמוד כניסה להגדרות מנוים"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "כתובת דוא\"ל ו-"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "רשימת %(realname)s: הגדרות מנוי עבור %(safeuser)s "
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2814,19 +2814,19 @@ msgstr ""
" בדפדפן שלך, אחרת השינוים שלך לא יכנסו לתוקף.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "כתובת דוא\"ל:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "סיסמא:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "כניסה למערכת"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2839,11 +2839,11 @@ msgstr ""
" עליו כדי להשלים את תהליך ביטול המנוי (אפשר גם לאשר\n"
" באמצעות דוא\"ל; ראה את ההוראות בהודעת האישור)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "תזכורת סיסמא"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2851,27 +2851,27 @@ msgstr ""
"כשתלחץ על הלחצן <em>תזכורת</em>, הסיסמא שלך\n"
" תישלח אליך בדוא\"ל."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "תזכורת"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<חסר>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "הנושא המבוקש אינו חוקי: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "פרטי מסנן נושא"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "שם:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "תבנית (כביטיו רגולרי):"
@@ -4932,11 +4932,11 @@ msgstr "אין תקציר לשלוח."
msgid "Invalid value for variable: %(property)s"
msgstr "ערך לא חוקי עבור המשתנה: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "כתובת דוא\"ל לא חוקי עבור אפשרות %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4950,7 +4950,7 @@ msgstr ""
" <p>יתכן שהרשימה שלך לא תפעל כראוי עד תיקון\n"
" בעיה זו."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5931,7 +5931,16 @@ msgstr ""
"מאפיין <b>שם אמיתי</b> לא שונה!\n"
" מותר לו להיות שונה משם הרשימה בראשיות תווים בלבד."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"מאפיין <b>שם אמיתי</b> לא שונה!\n"
+" מותר לו להיות שונה משם הרשימה בראשיות תווים בלבד."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8324,39 +8333,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "המסר נדחה בגלל התאמה לחוק סינון"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "תקציר של %(realname)s, כרך %(volume)d, גליון %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "כותרת התקציר"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "כותרת התקציר"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "נושאי היום:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "נושאי היום (%(msgcount)d הודעות)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[המסר נמחק על ידי מסנן התוכן]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "כותרת תחתונה של התקציר"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "כותרת תחתונה של התקציר"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "סוף ה"
@@ -8502,36 +8511,36 @@ msgstr "דרוש אישורך כדי להצטרף לרשימת דיוור %(list
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "אישורך דרוש כדי לעזוב את רשימת דיוור %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr "מ- %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "מנויים ל-%(realname)s מחייבים אישור מפקח"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "הודעת מנוי של %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "ביטולי מנויים מחייבים אישור מפקח"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "הודעת עזיבה של %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "הודעת עזיבה של %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "מנויים ל-%(name)s מחייבים אישור מנהל"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "מענה-אוטומטי אחרון להיום"
@@ -8717,7 +8726,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8731,29 +8740,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8800,45 +8823,54 @@ msgstr ""
"עליך לציין לפחות אחת מבין אפשריות r- ו- d-. רק קובץ אחד, לכל היותר, יכול "
"להיות `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "הנו כבר מנוי: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "כתובת דוא\"ל לא תקין/לא חוקי: שורה ריקה"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "כתובת·דוא\"ל·לא·תקין/לא·חוקי: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "כתובת אויינת (תווים לא חוקיים): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "נרשם: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "נרשם: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "ארגומנט לא תקין עבור -w/--welcome-msg:·%(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "ארגומנט·לא·תקין·עבור - -a/--admin-notify:·%(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr "לא יכול לקרוא גם מנויים רגילים וגם מנויי תקצירים מקלט סטנדרטי"
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "אין כזו רשימה: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/hr/LC_MESSAGES/mailman.po b/messages/hr/LC_MESSAGES/mailman.po
index c6f52035..6ca4c294 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,157 +15,157 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "veliina nije dostupna"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Nema naslova"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Prethodna poruka"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Sljedeca poruka"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "diskusija"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "naslov"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "datum"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Trenutno nema arhive. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzipovani Tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "prouavam arhivu lanaka\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Travanj"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Veljaa"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Sijeanj"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Oujak"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Kolovoz"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Srpanj"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Lipanj"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Svibanj"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Prosinac"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Studeni"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Listopad"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Rujan"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Prvi"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "etvrti"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Drugi"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Trei"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s kvartal %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Tjedan Ponedjeljka %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Izraunavam indekse diskusija\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Osvjeavam HTML za lanak %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "datoteka lanka %(filename)s nedostaje!"
@@ -227,7 +227,7 @@ msgstr " Datum vaeg posljednjeg odbijanja %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(nema naslova)"
@@ -245,7 +245,7 @@ msgid "Administrator"
msgstr "Administrator"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -254,7 +254,7 @@ msgstr "Takva lista ne postoji <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -264,7 +264,7 @@ msgstr "Greka"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -277,7 +277,7 @@ msgid "Authorization failed."
msgstr "Autorizacija nije uspjela."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -295,7 +295,7 @@ msgstr ""
" za vasu mailing listu, inace ce ona biti neupotrebljiva."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Upozorenje: "
@@ -323,11 +323,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s mailing liste - Admin Linkovi"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Dobrodoli!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -380,16 +380,16 @@ msgstr "stranica za pregled mailing liste"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Pitanja i komentare poaljite na "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Opis"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[opis nije dostupan]"
@@ -547,7 +547,7 @@ msgstr "Naziv naslova"
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Opis"
@@ -708,7 +708,7 @@ msgid "nodupes"
msgstr "nodupes"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -740,7 +740,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "ne metoo"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nema maila"
@@ -873,7 +873,7 @@ msgstr "Odmah pretplati ove korisnike ili ih pozovi?"
msgid "Invite"
msgstr "Pozovi"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Pretplati"
@@ -1102,7 +1102,7 @@ msgstr "Kriva/Neispravna e-mail adresa"
msgid "Hostile address (illegal characters)"
msgstr "Hostile adresa (nedozvoljeni znakovi)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1795,8 +1795,8 @@ msgstr ""
" <p>Ili stisnite <em>Zanemari i odbaci</em> da biste zanemarili ovaj\n"
" zahtjev za pretplatom."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Odjava"
@@ -2470,11 +2470,11 @@ msgstr "HTML Nepromjenjen."
msgid "HTML successfully updated."
msgstr "HTML je uspjeno osvjeen."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s Mailing Liste"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2482,7 +2482,7 @@ msgstr ""
"<p>Trenutno nema javno oglaenih\n"
" %(mailmanlink)s mailing lista na %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2498,11 +2498,11 @@ msgstr ""
"postavke vae\n"
" pretplate."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "u redu"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2515,11 +2515,11 @@ msgstr ""
" dodanim nazivom liste.\n"
" <p>Administratori liste, moete posjetiti "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "administratorska stranica za opi pregled"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2527,11 +2527,11 @@ msgstr ""
" da biste pronali upravljako suelje za vau listu.\n"
" <p>Poaljite pitanja i komentare na "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Uredi Opcije"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Pogledaj ovu stranicu koristei"
@@ -2553,17 +2553,17 @@ msgstr "Adresa nije dana"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Pogrena Email Adresa: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nema takvog lana: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Potvrdni e-mail je poslan."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2572,37 +2572,37 @@ msgstr ""
"Va zahtjev za odjavom je prosljeen administratoru liste na\n"
"odobrenje."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Podsjetnik vae lozinke poslan vam je mailom."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Autentikacija nije uspjela."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Podsjetnik vae lozinke poslan vam je mailom."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Pretplata na listu za %(safeuser)s na %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2610,22 +2610,22 @@ msgstr ""
"Kliknite na link da biste posjetili svoju stranicu sa opcijama za\n"
" traenu mailing listu."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adrese se ne podudaraju!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Ve koristite tu e-mail adresu"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2639,31 +2639,31 @@ msgstr ""
"Nakon potvrde, bilo koja druga lista koja sadri adresu\n"
"%(safeuser)s bit e promjenjena. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Nova adresa je ve lan: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adrese ne smiju biti prazne"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Potvrdna purka je poslana na %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Dana je kriva e-mail adresa"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Dana je pogrena e-mail adresa"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s je ve lan liste."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2674,11 +2674,11 @@ msgstr ""
"Ako mislite da je ova restrikcija preotra, obratite se vlasniku\n"
"liste na %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "lansko ime je uspjeno promjenjeno. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2688,15 +2688,15 @@ msgstr ""
" tako da vaa opcija dostave nije postavljena. Ipak,\n"
" druge opcije su uspjeno postavljene."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Lozinke ne smiju biti prazne"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Lozinke se ne podudaraju!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2707,12 +2707,12 @@ msgstr ""
" tako da vaa opcija dostave nije postavljena. Ipak,\n"
" druge opcije su uspjeno postavljene."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Lozinka je uspjeno promjenjena."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2721,11 +2721,11 @@ msgstr ""
"Va zahtjev za odjavom morate potvrditi ukljuivanjem polja ispod\n"
" <em>Odjava</em> gumba. Niste odjavljeni!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Rezultati odjave"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2736,7 +2736,7 @@ msgstr ""
" liste na odobrenje. Kada moderator liste napravi odluku primit\n"
" ete obavijest."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2752,7 +2752,7 @@ msgstr ""
"odjave,\n"
" kontaktirajte vlasnike liste na %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2760,7 +2760,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2771,7 +2771,7 @@ msgstr ""
" opcija dostave nije postavljena. Ipak, ostale opcije\n"
" su uspjeno postavljene."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2782,63 +2782,63 @@ msgstr ""
" tako da vaa opcija dostave nije postavljena. Ipak,\n"
" druge opcije su uspjeno postavljene."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Uspjeno ste postavili svoje opcije."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Moete eventualno dobiti jo jedan digest mail."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Da, ja se stvarno elim odjaviti</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Promjeni Moju Lozinku"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Prikai listu mojih drugih pretplata"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Poalji mi Moju Lozinku Mailom"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "lozinka"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Odjava"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Poalji Moje Promjene"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dani"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dan"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Promjeni Moju Adresu i Ime"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nijedna tema nije napisana</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2849,19 +2849,19 @@ msgstr ""
"mala slova)\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s lista: lanska ulazna stranica sa opcijama"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-mail adresa i "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s lista: lanske opcije za korisnika %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2893,19 +2893,19 @@ msgstr ""
" koje ste napravili nee imati uinka.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Email adresa:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Lozinka:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Prijavi se"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2919,11 +2919,11 @@ msgstr ""
"takoer moete\n"
" potvrditi i mailom; pogledajte upute u poruci sa potvrdom"
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Podsjetnik lozinke"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2931,27 +2931,27 @@ msgstr ""
"Klikom na <em>Podsjeti</em> gumb bit e\n"
" vam mailana vaa lozinka."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Podsjeti"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<missing>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Traeni naslov (tema) nije ispravan: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalji o filteru teme"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Naziv:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Uzorak (kao regexp):"
@@ -5145,11 +5145,11 @@ msgstr "Nije poslan nikakav digest."
msgid "Invalid value for variable: %(property)s"
msgstr "Pogrena vrijednost za varijablu: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Pogrena e-mail adresa za opciju %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5165,7 +5165,7 @@ msgstr ""
"ovaj\n"
" problem."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6234,7 +6234,17 @@ msgstr ""
" promjenjen! Ono se mora razlikovati od naziva liste samo po\n"
" velikim i malim slovima."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>stvarno_ime</b> atribut nije\n"
+" promjenjen! Ono se mora razlikovati od naziva liste samo po\n"
+" velikim i malim slovima."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8760,39 +8770,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Digest, Broj %(volume)d, Izdanje %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "zaglavlje digesta"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Zaglavlje Digesta"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dananje Teme:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dananje Teme (%(msgcount)d poruka)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "podnoje digesta"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Podnoje Digesta"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Kraj "
@@ -8947,36 +8957,36 @@ msgstr "Vi niste lan %(listname)s mailing liste"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Vi niste lan %(listname)s mailing liste"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " od %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "prtplate na %(realname)s zahtjevaju odobrenje moderatora"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s obavijest o pretplati"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "odjava treba odobrenje moderatora"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s obavijest o odjavi"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s obavijest o odjavi"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "pretplata na %(name)s treba odobrenje administratora"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Posljednja obavijest o automatskom odgovoru za danas"
@@ -9164,7 +9174,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9177,29 +9187,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9213,45 +9237,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr ""
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "lanovi liste"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr ""
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr ""
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/hu/LC_MESSAGES/mailman.po b/messages/hu/LC_MESSAGES/mailman.po
index 2c257484..7620f208 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -14,157 +14,157 @@ msgstr ""
"Content-Type: text/plain; charset=iso-8859-2\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "ismeretlen mret"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i byte "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Nincs trgy megadva"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Elz zenet:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Kvetkez zenet:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "tma"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "trgy"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "szerz"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "dtum"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Mg nincs archvum. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Tmrtett Szveg%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Szveg%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "levelek archvumnak elksztse\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "prilis"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februr"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Janur"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mrcius"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Augusztus"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Jlius"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Jnius"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mjus"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "December"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktber"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Szeptember"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "els"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "negyedik"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "msodik"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "harmadik"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)i %(ord)s negyedve"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(year)i %(month)s"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "%(year)i %(month)s %(day)i htfi nappal kezdd ht"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(year)i %(month)s %(day)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Tma index ksztse\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "%(seq)s zenet HTML-oldalnak frisstse"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "%(filename)s zenet llomnya hinyzik!"
@@ -226,7 +226,7 @@ msgstr " Az utols visszapattansod ideje: %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(nincs trgy)"
@@ -244,7 +244,7 @@ msgid "Administrator"
msgstr "Adminisztrtor"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -253,7 +253,7 @@ msgstr "Nincs <em>%(safelistname)s</em> nev lista"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -263,7 +263,7 @@ msgstr "Hiba"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -276,7 +276,7 @@ msgid "Authorization failed."
msgstr "Sikertelen azonosts"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -294,7 +294,7 @@ msgstr ""
"\t kell."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Figyelmeztets: "
@@ -324,11 +324,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s levelezlistk - Adminisztrcis oldalak"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "dvzlet!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -381,16 +381,16 @@ msgstr "levelezlistk informcis oldaln"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Krdseidet, szrevteleidet cmezd ide "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Lers"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[nem tallhat lers]"
@@ -544,7 +544,7 @@ msgstr "Tma neve:"
msgid "Regexp:"
msgstr "Keressi felttel:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Lers"
@@ -705,7 +705,7 @@ msgid "nodupes"
msgstr "tbbszr ne"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -737,7 +737,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "sajt nem"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nincs levl"
@@ -858,7 +858,7 @@ msgstr ""
msgid "Invite"
msgstr "Meghv"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Feliratkozs"
@@ -1088,7 +1088,7 @@ msgstr "Hibs/rvnytelen e-mail cm"
msgid "Hostile address (illegal characters)"
msgstr "Tiltott cm (illeglis karakterek)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1759,8 +1759,8 @@ msgstr ""
" <p>Ha nem akarod a leiratkozst megersteni, akkor vlaszd a\n"
" <em>Mgsem s elvet</em> gombot."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Leiratkozs"
@@ -2425,11 +2425,11 @@ msgstr "Nincs vltoztats."
msgid "HTML successfully updated."
msgstr "HTML sikeresen frisstve."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s Levelezlistk"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2437,7 +2437,7 @@ msgstr ""
"<p> Nem futnak nyilvnos %(mailmanlink)s levelezlistk a(z) %(hostname)s "
"gpen."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2451,11 +2451,11 @@ msgstr ""
"\t feliratkozshoz, leiratkozshoz, vagy a belltsaid mdostshoz\n"
"\t kattints a lista nevre."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "megfelel"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2467,11 +2467,11 @@ msgstr ""
"a %(adj)s lista nevt.\n"
"<p>Lista adminisztrtorok a "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "listk adminisztrtori oldaln"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2479,11 +2479,11 @@ msgstr ""
" kezelhetik listikat. <p>Brmilyen problmdat a listval kapcsolatban "
"cmezd ide "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Belltsok szerkesztse"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Az oldal nyelve/View this page in"
@@ -2505,17 +2505,17 @@ msgstr "Nincs cm megadva"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "rvnytelen e-mail cm: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nem tallhat %(safeuser)s cmmel tag."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "A megerstsre felszlt levl el lett kldve."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2524,37 +2524,37 @@ msgstr ""
"Leiratkozsi krelmed a lista adminisztrtorhoz lett tovbbtva,\n"
"megerstshez."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Az emlkeztet a jelszavadrl e-mailben el lett kldve."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Sikertelen azonosts"
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Az emlkeztet a jelszavadrl e-mailben el lett kldve."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "%(safeuser)s felhasznl listatagsgai a(z) %(hostname)s gpen"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2562,22 +2562,22 @@ msgstr ""
"A levelezlistn lv belltsaid megtekintshez kattints\n"
"\tide:"
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "A cmek nem egyeznek!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Jelenleg is ezt az e-mail cmet hasznlod."
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2591,31 +2591,31 @@ msgstr ""
"cmed ezrt azokon a listkon, ahol %(safeuser)s cmmel vagy nylvntartva\n"
"a vltoztats a megerstsi utn sikeresen megtrtnik majd."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "A megadott cmmel mr van tag a listn: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Legalbb egy cmet meg kell adnod."
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "A megerstsi rtests a(z) %(newaddr)s cmre el lett kldve."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "A megadott e-mail cm hibs."
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "A megadott e-mail cm rvnytelen."
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s mr tagja a listnak."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2626,11 +2626,11 @@ msgstr ""
"Ha gy gondolod, hogy ez a korltozs jogtalan, akkor krlek\n"
"rj a lista tulajdonosnak a kvetkez cmre: %(owneraddr)s"
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "A listatag neve sikeresen megvltoztatva."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2640,15 +2640,15 @@ msgstr ""
" , ezrt ezt a kldsi mdot nem lehet megadni. Azonban a tbbi\n"
" vltoztats sikeresen el lett mentve."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Ktelez megadni jelszt"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "A jelszavak nem egyeznek!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2659,12 +2659,12 @@ msgstr ""
" , ezrt ezt a kldsi mdot nem lehet megadni. Azonban a tbbi\n"
" vltoztats sikeresen el lett mentve."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Jelsz megvltoztatva."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2673,11 +2673,11 @@ msgstr ""
"Meg kell erstened a leiratkozsi szndkodat a <em>Leiratkozs</em>\n"
" gomb alatti kapcsol kipiplsval. Nem lettl trlve a listrl!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Trlve"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2687,7 +2687,7 @@ msgstr ""
"Leiratkozsi krelmedet megkaptuk s tovbbtottuk a lista szerkesztjhez\n"
"jvhagysra. A szerkeszt dntsrl e-mailben kapsz rtestst."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2702,7 +2702,7 @@ msgstr ""
"\tnyugodtan a fordulj a lista tulajdonoshoz ezen a cmen:\n"
"\t%(owneraddr)s"
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2710,7 +2710,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2721,7 +2721,7 @@ msgstr ""
" , ezrt ezt a kldsi mdot nem lehet megadni. Azonban a tbbi\n"
" vltoztats sikeresen el lett mentve."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2732,63 +2732,63 @@ msgstr ""
" , ezrt ezt a kldsi mdot nem lehet megadni. Azonban a tbbi\n"
" vltoztats sikeresen el lett mentve."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "A kvnt vltoztatsok sikeresen el lettek mentve."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Egy utols digestet mg kapni fogsz."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Igen, tnyleg le akarok iratkozni</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Jelszavam megvltoztatsa"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Mutasd a tbbi feliratkozsomat"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Kldd el e-mailben a jelszavamat"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "jelsz"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Kilps"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Vltoztatsaim mentse"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "nap"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "nap"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Feliratkozsi cmem s nevem megvltoztatsa"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nincsen tmaszrs</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2797,19 +2797,19 @@ msgstr ""
"\n"
"Feliratkozsod bethelyesen a kvetkez <em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s lista: listatagsgi oldal"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-mail cmed s "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s lista: %(safeuser)s tag belltsai"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2842,19 +2842,19 @@ msgstr ""
" "
# In this entry insert a space at the end of string, it will be stripped.
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-mail cm: "
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Jelsz: "
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Bejelentkezs"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2868,11 +2868,11 @@ msgstr ""
" (vagy a megfelel e-mailt elkldeni; errl a levlben lehet \n"
" rszletesen olvasni)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Jelsz emlkeztet"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2880,27 +2880,27 @@ msgstr ""
"Az <em>Emlkeztet</em> gombra kattintva e-mailben elkldsre kerl\n"
" a jelszavad."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Emlkeztet"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<hinyzik>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "A krt tmaszrs nem megfelel: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Bvebben a tmk szrsrl"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Neve:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Szrsi felttel (kifejezsknt megadva)"
@@ -5062,11 +5062,11 @@ msgstr "Nem volt digest, amit ki lehetett kldeni."
msgid "Invalid value for variable: %(property)s"
msgstr "rvnytelen rtk a(z) %(property)s vltoznl."
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Rossz e-mail cm lett a %(property)s rszben megadva: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5081,7 +5081,7 @@ msgstr ""
" <p>A lista lehet hogy addig nem mkdik megfelelen,\n"
"amg a hibt ki nem javtja."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6071,7 +6071,18 @@ msgstr ""
"trhet\n"
" el az itt megadott nv."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<p><b>real_name</b> jellemzt nem\n"
+" vltoztattam meg! A lista nevtl csak kis-, nagybetvel "
+"trhet\n"
+" el az itt megadott nv."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8478,39 +8489,39 @@ msgstr ""
"A levl megjelense visszautastva, mert illeszkedik valamelyik szr "
"felttelre"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s digest, %(volume)d ktet, %(issue)d szm"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "digest fejlc"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Digest fejlc"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Mai tmk:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Mai tmk (%(msgcount)d zenet)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Tartalomszrs miatt az zenet trlve lett]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "digest lblc"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Digest lblc"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Vge: "
@@ -8659,38 +8670,38 @@ msgstr "Nem vagy tagja a(z) %(listname)s levelezlistnak."
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Nem vagy tagja a(z) %(listname)s levelezlistnak."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
"feliratkozshoz a(z) %(realname)s listra szerkeszti jvhagys szksges"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "rtests feliratkozsrl a(z) %(realname)s listn"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "leiratkozshoz szerkeszti jvhagys szksges"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "rtests leiratkozsrl a(z) %(realname)s listn"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "rtests leiratkozsrl a(z) %(realname)s listn"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"feliratkozshoz a(z) %(name)s listra adminisztrtori jvhagys szksges"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "A mai napra az utols automatikus vlasz"
@@ -8877,7 +8888,7 @@ msgstr ""
"%(year)04i. %(mon)s. %(day)2i., %(wday)s, %(hh)02i:%(mm)02i:%(ss)02i "
"%(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8891,29 +8902,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8968,47 +8993,56 @@ msgstr ""
"Parancssorban az -n vagy -d kapcsolk legalbb egyikt meg kell adni.\n"
"Legfeljebb az egyik llomnynvnek adhat meg `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Mr tag: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Hibs/rvnytelen e-mail cm: res sor"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Hibs/rvnytelen e-mail cm: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Tiltott cm (illeglis karakterek): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Felrva: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Felrva: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Hibs paramter a -w/--welcome-msg kapcsolnl: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Hibs paramter az -a/--admin-notify kapcsolnl: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"A standard bemenetrl nem lehet egyszerre hagyomnyos s digest tagokat "
"megadni."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Nincs %(listname)s nev lista"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ia/LC_MESSAGES/mailman.po b/messages/ia/LC_MESSAGES/mailman.po
index ad4a34c6..609653d2 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -17,155 +17,155 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "dimension non disponibile"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sin subjecto"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " a "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "Message precedente (in discussion):"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "Message sequente (in discussion):"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "discussion"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "subjecto"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Actualmente il non ha archivos. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Texto comprimite con gzip%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Texto%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "generante archivos de articulos\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "april"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "februario"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "januario"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "martio"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "augusto"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "julio"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "junio"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "maio"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "decembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "novembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "octobre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "septembre"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Prime"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Quarte"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Secunde"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tertie"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s trimestre %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Le septimana de lunedi le %(day)i de %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i de %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Computante le indice per discussion\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Actualisante le HTML pro le articulo %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "file de articulo %(filename)s non trovate!"
@@ -227,7 +227,7 @@ msgstr " Le ultime message retrosaltate recipite de te data del %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sin subjecto)"
@@ -245,7 +245,7 @@ msgid "Administrator"
msgstr "Administrator"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -254,7 +254,7 @@ msgstr "Le lista <em>%(safelistname)s</em> non existe"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -264,7 +264,7 @@ msgstr "Error"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -277,7 +277,7 @@ msgid "Authorization failed."
msgstr "Autorisation fallite."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "Le formulario ha expirate. (controlo contra falsification de requesta)"
@@ -295,7 +295,7 @@ msgstr ""
" livration o tu lista essera de facto inusabile."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Attention: "
@@ -324,11 +324,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Listas in %(hostname)s - Ligamines administrative"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Benvenite!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -381,16 +381,16 @@ msgstr "le pagina general del lista"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Invia questiones e commentarios a "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Description"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[description non disponibile]"
@@ -545,7 +545,7 @@ msgstr "Nomine del topico:"
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Description:"
@@ -705,7 +705,7 @@ msgid "nodupes"
msgstr "sin duples"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digesto"
@@ -737,7 +737,7 @@ msgstr "R"
msgid "notmetoo"
msgstr "sin propries"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "sin posta"
@@ -871,7 +871,7 @@ msgstr "Abonar iste usatores ora o invitar les?"
msgid "Invite"
msgstr "Invitar"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Abonar"
@@ -1106,7 +1106,7 @@ msgstr "Adresse de e-mail invalide"
msgid "Hostile address (illegal characters)"
msgstr "Adresse invalide (characteres illegal)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Adresse bannite (corresponde a %(pattern)s)"
@@ -1790,8 +1790,8 @@ msgstr ""
"requesta\n"
" de disabonamento."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Disabona me"
@@ -2462,11 +2462,11 @@ msgstr "Pagina non modificate."
msgid "HTML successfully updated."
msgstr "HTML modificate con successo."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listas de diffusion in %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2474,7 +2474,7 @@ msgstr ""
"<p>Il non ha actualmente listas %(mailmanlink)s\n"
" visibile publicamente in %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2490,11 +2490,11 @@ msgstr ""
"preferentias\n"
" de tu abonamento."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "dextera"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2506,11 +2506,11 @@ msgstr ""
" nomine del lista appendite.\n"
" <p>Si tu es un administrator del lista, tu pote visitar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "le pagina general del administratores"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2519,11 +2519,11 @@ msgstr ""
" <p>Si tu incontra problemas in le usage de iste listas, per favor "
"contacta "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Modifica optiones"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Vide iste pagina in"
@@ -2545,17 +2545,17 @@ msgstr "Nulle adresse date"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Adresse de e-mail invalide: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Membro inexistente: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
msgid "If you are a list member, a confirmation email has been sent."
msgstr ""
"Si tu es membro del lista, un message de confirmation ha essite inviate."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
@@ -2563,7 +2563,7 @@ msgstr ""
"Si tu es membro del lista, tu requesta de disabonamento ha essite\n"
" inviate al administrator del lista pro approbation."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
@@ -2571,30 +2571,30 @@ msgstr ""
"Si tu es membro del lista,\n"
" tu contrasigno te ha essite inviate."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Authentication fallite."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Un rememoration de tu contrasigno te ha essite inviate."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Abonamentos de %(safeuser)s in %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2602,22 +2602,22 @@ msgstr ""
"Clicca sur un ligamine pro visitar tu pagina de optiones\n"
" pro le lista seligite."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Le adresses non corresponde!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Tu jam usa iste adresse de e-mail"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2631,31 +2631,31 @@ msgstr ""
"Post tu confirmation, tote altere listas continente le adresse\n"
"%(safeuser)s essera cambiate. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Le nove adresse jam es un membro: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adresses non pote esser vacue"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Un message de confirmation ha essite inviate a %(newaddr)s."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Adresse de e-mail invalide"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Adresse de e-mail invalide"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s jam es un membro del lista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2666,11 +2666,11 @@ msgstr ""
"proprietario(s) del\n"
"lista a %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Le nomine del abonato ha essite cambiate con successo. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2678,15 +2678,15 @@ msgstr ""
"Le administrator del lista non pote cambiar le\n"
" contrasigno de un usator."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Contrasignos non pote esser vacue"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Le contrasignos non corresponde!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2696,12 +2696,12 @@ msgstr ""
" pro le altere abonamentos de iste usator. Nonobstante, le\n"
" contrasigno de iste lista de diffusion ha essite cambiate."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Contrasigno cambiate con successo."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2711,11 +2711,11 @@ msgstr ""
" le cella sub le button <em>Disabona</em>. Tu\n"
" ancora non ha essite disabonate!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultatos del disabonamento"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2727,7 +2727,7 @@ msgstr ""
" un notification post que le moderatores ha prendite lor\n"
" decision."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2741,7 +2741,7 @@ msgstr ""
" Si tu ha alicun question sur tu disabonamento, per favor\n"
" contacta le proprietarios del lista a %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2749,7 +2749,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2761,7 +2761,7 @@ msgstr ""
"comocunque\n"
" tote tu altere optiones ha essite activate con successo."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2773,63 +2773,63 @@ msgstr ""
"comocunque\n"
" tote tu altere optiones ha essite activate con successo."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Tu ha editate tu optiones con successo."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Tu poterea reciper un ultime digesto."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Si, io vermente vole disabonar me</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Cambia mi contrasigno"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Lista mi altere abonamentos"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Invia me mi contrasigno per e-mail"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "contrasigno"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Claude session"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Confirma mi cambiamentos"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dies"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "die"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Cambia mi adresse e nomine"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nulle thema definite</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2839,19 +2839,19 @@ msgstr ""
"Tu es abonate al lista con le adresse sin variationes de maiusculas\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Lista %(realname)s: pagina de entrata al optiones del membro"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "adresse de e-mail e "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Lista %(realname)s: optiones del usator %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2881,19 +2881,19 @@ msgstr ""
" o tu cambiamentos non habera effecto.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Adresse e-mail:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Contrasigno:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Aperi session"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2908,11 +2908,11 @@ msgstr ""
"message\n"
" de confirmation)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Promemoria del contrasigno"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2920,27 +2920,27 @@ msgstr ""
"Post cliccar le button <em>Promemoria</em> button, tu\n"
" contrasigno te essera inviate in e-mail."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Promemoria"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<mancante>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Le thema non es valide: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalios de filtro de themas"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nomine:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Motivo (como expression regular):"
@@ -5180,11 +5180,11 @@ msgstr "Il habeva nulle digesto a inviar."
msgid "Invalid value for variable: %(property)s"
msgstr "Valor invalide pro le variabile: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Incorrecte adresse de e-mail pro option %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5200,7 +5200,7 @@ msgstr ""
"corrige iste\n"
" problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6275,7 +6275,16 @@ msgstr ""
"Attributo <b>admin_member_chunksize</b> non\n"
" cambiate! Illo debe esser un numero integre > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Attributo <b>admin_member_chunksize</b> non\n"
+" cambiate! Illo debe esser un numero integre > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8820,40 +8829,40 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Message rejectate per equalation a regula de filtro"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Digesto de %(realname)s, volumine %(volume)d, edition %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "capite de digesto"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Capite de digesto"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Themas de hodie:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Themas de hodie (%(msgcount)d messages)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
#, fuzzy
msgid "[Message discarded by content filter]"
msgstr "Message delite per filtro de contento?"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "nota de pede del digesto"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Nota de pede del digesto"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fin de "
@@ -9010,36 +9019,36 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr ""
"Tu confirmation es requirite pro abandonar le lista de diffusion %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "abonamentos a %(realname)s require approbation del moderator"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "notification de abonamento de %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "disabonamento require approbation del moderator"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "notification de disabonamento de %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "notification de disabonamento de %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "abonamentos a %(name)s require approbation del administrator"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Ultime notification de auto-responsa pro hodie"
@@ -9229,7 +9238,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9242,29 +9251,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9278,45 +9301,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Jam es un membro: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Errate/invalide adresse email: linea vacue"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Errate/invalide adresse email: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Adresse hostil (characteres illegal): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Abonate: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Abonate: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Lista inexistente: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/it/LC_MESSAGES/mailman.po b/messages/it/LC_MESSAGES/mailman.po
index 8920e596..5016956b 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,171 +15,171 @@ msgstr ""
"X-Generator: KBabel 1.11.4\n"
# /home/mailman/Mailman/MailCommandHandler.py:405
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "dimensione non disponibile"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i byte "
# /home/mailman/Mailman/Archiver/pipermail.py:95
# /home/mailman/Mailman/Archiver/pipermail.py:96
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Senza oggetto"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " a "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Messaggio precedente:"
# /home/mailman/Mailman/Archiver/Archiver.py:134
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Prossimo messaggio:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "thread"
# /home/mailman/Mailman/Archiver/pipermail.py:95
# /home/mailman/Mailman/Archiver/pipermail.py:96
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "soggetto"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autore"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Attualmente non ci sono archivi. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Testo zippato%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Testo%(sz)s"
# /home/mailman/Mailman/Cgi/private.py:65
# /home/mailman/Mailman/Cgi/private.py:77
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "cerco gli archivi per questo articolo\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Aprile"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Febbraio"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Gennaio"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marzo"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Agosto"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Luglio"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Giugno"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maggio"
# /home/mailman/Mailman/MailList.py:593
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Dicembre"
# /home/mailman/Mailman/MailList.py:593
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Novembre"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Ottobre"
# /home/mailman/Mailman/MailList.py:593
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Settembre"
# /home/mailman/Mailman/Cgi/admin.py:260
# /home/mailman/Mailman/Cgi/listinfo.py:159
# /home/mailman/Mailman/MailList.py:428
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primo"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Quarto"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Secondo"
# /home/mailman/Mailman/Cgi/admin.py:543
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Terzo"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s trimestre %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "La settimana di Luned&igrave; %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Calcolo l'indice per thread\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Aggiorno l'HTML per l'articolo %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "manca il file dell'articolo %(filename)s!"
@@ -247,7 +247,7 @@ msgstr " L'ultimo errore sul tuo indirizzo datato %(date)s"
# /home/mailman/Mailman/Archiver/pipermail.py:96
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(senza oggetto)"
@@ -267,7 +267,7 @@ msgid "Administrator"
msgstr "l'amministratore della lista"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -292,7 +292,7 @@ msgstr "Non esiste la lista <em>%(safelistname)s</em>"
# /home/mailman/Mailman/Cgi/subscribe.py:102
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -309,7 +309,7 @@ msgstr "Errore"
# /home/mailman/Mailman/Cgi/subscribe.py:44
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -322,7 +322,7 @@ msgid "Authorization failed."
msgstr "Autenticazione fallita."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -341,7 +341,7 @@ msgstr ""
" inutilizzabile."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Attenzione: "
@@ -373,11 +373,11 @@ msgstr "Liste di %(hostname)s - Amministrazione"
# /home/mailman/Mailman/Cgi/admin.py:215
# /home/mailman/Mailman/Cgi/listinfo.py:115
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Benvenuto!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -440,7 +440,7 @@ msgstr "<p>(Manda domande o commenti a "
# /home/mailman/Mailman/Cgi/admin.py:260
# /home/mailman/Mailman/Cgi/listinfo.py:159
# /home/mailman/Mailman/MailList.py:428
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
@@ -448,12 +448,12 @@ msgstr "Lista"
# /home/mailman/Mailman/Cgi/admin.py:352
# /home/mailman/Mailman/Cgi/listinfo.py:159
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descrizione"
# /home/mailman/Mailman/MailCommandHandler.py:405
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[nessuna descrizione disponibile]"
@@ -619,7 +619,7 @@ msgstr "Regexp:"
# /home/mailman/Mailman/Cgi/admin.py:260
# /home/mailman/Mailman/Cgi/admin.py:352
# /home/mailman/Mailman/Cgi/listinfo.py:159
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descrizione:"
@@ -789,7 +789,7 @@ msgstr "no doppioni"
# /home/mailman/Mailman/Digester.py:63
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -824,7 +824,7 @@ msgstr "E"
msgid "notmetoo"
msgstr "non anche a me"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nomail"
@@ -966,7 +966,7 @@ msgid "Invite"
msgstr "Invita"
# /home/mailman/Mailman/Cgi/admindb.py:213
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Iscrivi"
@@ -1233,7 +1233,7 @@ msgstr "Indirizzo email errato/non valido"
msgid "Hostile address (illegal characters)"
msgstr "Indirizzo errato (caratteri non permessi)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Indirizzo interdetto (corrispondenza con %(pattern)s)"
@@ -1960,8 +1960,8 @@ msgstr ""
" richiesta di cancellazione."
# /home/mailman/Mailman/Cgi/admindb.py:213
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Cancellami"
@@ -2693,11 +2693,11 @@ msgstr "Pagina invariata."
msgid "HTML successfully updated."
msgstr "HTML modificato con successo."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Liste su %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2705,7 +2705,7 @@ msgstr ""
"<p> Attualmente non ci sono liste %(mailmanlink)s visibili al pubblico\n"
" su %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2721,11 +2721,11 @@ msgstr ""
# /home/mailman/Mailman/Cgi/admin.py:242
# /home/mailman/Mailman/Cgi/listinfo.py:143
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "destra"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2738,11 +2738,11 @@ msgstr ""
" <p>Gli amministratori possono visitare "
# /home/mailman/Mailman/Cgi/listinfo.py:148
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "la pagina di supervisione per gli amministratori"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2751,12 +2751,12 @@ msgstr ""
" <p>Se hai difficolt&agrave;, invia domande o commenti a "
# /home/mailman/Mailman/HTMLFormatter.py:255
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Modifica Opzioni"
# /home/mailman/Mailman/Cgi/listinfo.py:199
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Vedi questa pagina in"
@@ -2780,17 +2780,17 @@ msgstr "Nessun indirizzo fornito"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Indirizzo email errato/non valido: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nessun iscritto: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "L'email di conferma &egrave; stata spedita."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2799,22 +2799,22 @@ msgstr ""
"La tua richiesta di iscrizione stata inoltrata \n"
"all'amministratore della lista per essere approvata."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Un promemoria della tua password ti &egrave; stato inviato."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Autenticazione fallita."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Un promemoria della tua password ti &egrave; stato inviato."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2822,24 +2822,24 @@ msgstr ""
"L'amministratore della lista non pu vedere le altre iscrizioni di questo "
"utente."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Nota: "
# /home/mailman/Mailman/Cgi/handle_opts.py:147
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Lista delle iscrizioni per %(safeuser)s su %(hostname)s"
# /home/mailman/Mailman/Cgi/handle_opts.py:149
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "Clicca su un link per visitare le tue opzioni per la lista"
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2850,16 +2850,16 @@ msgstr ""
"a\n"
" questa lista stata cambiata."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Gli indirizzi non sono uguali|"
# /home/mailman/Mailman/MailCommandHandler.py:351
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Stai gi usando questo indirizzo"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2872,34 +2872,34 @@ msgstr ""
"cambio globale di indirizzo. Se confermi, ogni altra lista contenente\n"
"l'indirizzo %(safeuser)s sar&agrave; cambiata."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Il nuovo indirizzo gi un iscritto: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Gli indirizzi non possono essere vuoti"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Una richiesta di conferma &egrave; stata spedita a %(newaddr)s"
# /home/mailman/Mailman/Cgi/admin.py:861
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Indirizzo email errato/non valido"
# /home/mailman/Mailman/Cgi/admin.py:861
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Indirizzo email errato/non valido"
# /home/mailman/Mailman/MailCommandHandler.py:297
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s gi iscritto alla lista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2910,11 +2910,11 @@ msgstr ""
"della lista all'indirizzo %(owneraddr)s."
# /home/mailman/Mailman/Cgi/edithtml.py:194
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Nome dell'iscritto modificato con successo."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2923,15 +2923,15 @@ msgstr ""
"L'amministratore della lista non pu vedere le altre iscrizioni di questo "
"utente."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Le password non possono essere vuote"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Le password non sono uguali!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2942,12 +2942,12 @@ msgstr ""
" per questa lista &egrave; stata cambiata."
# /home/mailman/Mailman/Cgi/edithtml.py:194
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Password modificata con successo."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2958,11 +2958,11 @@ msgstr ""
" Non sei stato cancellato!"
# /home/mailman/Mailman/Cgi/admindb.py:289
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Risultati di cancellazione"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2974,7 +2974,7 @@ msgstr ""
" Riceverai una notifica quando i moderatori avranno \n"
" preso una decisione."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2989,7 +2989,7 @@ msgstr ""
" a proposito della tua cancellazione, contatta i gestori della\n"
" lista all'indirizzo %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -3000,7 +3000,7 @@ msgstr ""
" iscrizioni di questo utente. Tuttavia, le opzioni per\n"
" l'iscrizione a questa lista sono state cambiate."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -3012,7 +3012,7 @@ msgstr ""
" state modificate. In ogni caso tutti gli altri parametri\n"
" sono stati salvati correttamente."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -3025,69 +3025,69 @@ msgstr ""
" sono stati salvati correttamente."
# /home/mailman/Mailman/Cgi/handle_opts.py:242
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Le tue opzioni sono state modificate con successo."
# /home/mailman/Mailman/Cgi/handle_opts.py:248
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Potresti ricevere un ultimo digest."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>S&igrave;, voglio veramente cancellarmi</em>"
# /home/mailman/Mailman/Cgi/options.py:140
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Cambia la mia password"
# /home/mailman/Mailman/Cgi/options.py:138
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Elenco delle altre mie iscrizioni"
# /home/mailman/Mailman/Cgi/options.py:146
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Mandami la mia password via email"
# /home/mailman/Mailman/Cgi/options.py:149
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "password"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Termina Sessione"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Esegui le variazioni"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "giorni"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "giorno"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Cambia il mio nome e indirizzo"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Non sono stati definiti argomenti</em>"
# /home/mailman/Mailman/Cgi/options.py:151
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -3098,20 +3098,20 @@ msgstr ""
"(conservando maiuscole e minuscole)\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "lista %(realname)s: login alla pagina di opzioni per gli iscritti"
# /home/mailman/Mailman/Cgi/admin.py:861
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "indirizzo email e"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Lista %(realname)s: opzioni di iscrizione per %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -3143,20 +3143,20 @@ msgstr ""
# In this entry insert a space at the end of string, it will be stripped.
# /home/mailman/Mailman/HTMLFormatter.py:287
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Indirizzo email:"
# /home/mailman/Mailman/HTMLFormatter.py:301
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Password:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entra"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -3171,11 +3171,11 @@ msgstr ""
" email; vedi le istruzioni nel messaggio)."
# /home/mailman/Mailman/HTMLFormatter.py:301
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Promemoria password"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -3183,27 +3183,27 @@ msgstr ""
"Cliccando sul pulsante <em>Promemoria</em>,\n"
" ti sar&agrave; spedita la tua password."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Promemoria"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<mancante>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "L'argomento richiesto non &egrave; valido: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Dettagli sul filtro per argomenti"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nome:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Pattern (come regexp):"
@@ -5489,11 +5489,11 @@ msgstr "Non c'erano digest in attesa."
msgid "Invalid value for variable: %(property)s"
msgstr "Valore non valido per la variabile %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Indirizzo errato per l'opzione %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5509,7 +5509,7 @@ msgstr ""
" <p>La tua lista potrebbe non funzionare correttamente\n"
" finch&egrave; non risolvi il problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6581,7 +6581,16 @@ msgstr ""
"L'attributo <b>admin_member_chunksize</b> non stato\n"
" cambiato! Deve essere intero e positivo."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"L'attributo <b>admin_member_chunksize</b> non stato\n"
+" cambiato! Deve essere intero e positivo."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -9204,44 +9213,44 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Messaggio respinto a causa di una regola di filtro"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Digest di %(realname)s, Volume %(volume)d, Numero %(issue)d"
# /home/mailman/Mailman/MailCommandHandler.py:457
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "intestazione digest"
# /home/mailman/Mailman/MailCommandHandler.py:457
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Intestazione Digest"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Argomenti del Giorno:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Argomenti di oggi (%(msgcount)d messaggi)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Messaggio scartato dal filtro contenuti]"
# /home/mailman/Mailman/Digester.py:63
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "chiusura del digest"
# /home/mailman/Mailman/Digester.py:63
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Chiusura del digest"
# /home/mailman/Mailman/MailCommandHandler.py:175
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fine di "
@@ -9402,39 +9411,39 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr " richiesta la tua conferma per disiscriverti dalla lista %(listname)s"
# /home/mailman/Mailman/Cgi/subscribe.py:129
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " da %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "le iscrizioni a %(realname)s richiedono l'approvazione del moderatore"
# /home/mailman/Mailman/Cgi/roster.py:72
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Notifica di iscrizione a %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "le cancellazioni richiedono l'approvazione del moderatore"
# /home/mailman/Mailman/Cgi/roster.py:72
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "notifica di cancellazione da %(realname)s"
# /home/mailman/Mailman/Cgi/roster.py:72
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "notifica di cancellazione da %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "le iscrizioni a %(name)s richiedono l'approvazione dell'amministratore"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Ultima notifica automatica per oggi."
@@ -9637,7 +9646,7 @@ msgid ""
msgstr ""
"%(wday)s %(day)2i %(mon)s %(year)04i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9651,29 +9660,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9731,51 +9754,61 @@ msgstr ""
"files pu essere `-'.\n"
# /home/mailman/Mailman/Cgi/admin.py:856
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Gi iscritto: %(member)s"
# /home/mailman/Mailman/Cgi/admin.py:861
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Indirizzo email errato/non valido: riga vuota"
# /home/mailman/Mailman/Cgi/admin.py:861
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Indirizzo email errato/non valido: %(member)s"
# /home/mailman/Mailman/Cgi/admin.py:864
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Indirizzo con caratteri non permessi: %(member)s"
# /home/mailman/Mailman/Cgi/admin.py:633
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Iscritto: %(member)s"
+
+# /home/mailman/Mailman/Cgi/admin.py:633
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Iscritto: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argomento errato per il parametro -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argomento errato per il parametro -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Non posso leggere sia gli iscritti digest che quelli normali dallo standard "
"input."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Non esiste la lista: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ja/LC_MESSAGES/mailman.po b/messages/ja/LC_MESSAGES/mailman.po
index 905dfc2b..7674dfa3 100755
--- 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.23\n"
-"POT-Creation-Date: Wed Apr 11 18:40:25 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2016-08-28 01:26+09:00\n"
"Last-Translator: Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp>\n"
"Language-Team: Japanese <mailman-users-jp@googlegroups.com>\n"
@@ -17,155 +17,155 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "ʤ"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i Х "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "̵"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "ε (å)"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "ε (å)"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "å"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "̾"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "ȯ"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>, ¸ˤϤޤ."
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip̥ƥ %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "ƥ %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "¸˺\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "4"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "2"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "1"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "3"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "8"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "7"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "6"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "5"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "12"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "11"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "10"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "9"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "1"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "4"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "2"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "3"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)iǯ%(ord)sȾ"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(year)iǯ%(month)s"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "%(year)iǯ%(month)s%(day)i()ν"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(year)iǯ%(month)s%(day)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "åɲ\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr " %(seq)s ֤HTML򹹿"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "ե %(filename)s ޤ."
@@ -295,7 +295,7 @@ msgstr ""
"᡼󥰥ꥹȤϵǽޤ. "
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "ٹ: "
@@ -1082,7 +1082,7 @@ msgstr "ޤ̵ʥ᡼륢ɥ쥹"
msgid "Hostile address (illegal characters)"
msgstr "ʥɥ쥹 (§ʸ)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "ػߥɥ쥹 (%(pattern)s ˰)"
@@ -4852,11 +4852,11 @@ msgstr "ȯ٤, ޤȤɤߤޤ."
msgid "Invalid value for variable: %(property)s"
msgstr "ѿ̵ͤ: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "%(property)s ץΥ᡼륢ɥ쥹ְäƤޤ: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4869,7 +4869,7 @@ msgstr ""
" <code>%(bad)s</code>\n"
"<p>ޤǤ, ᡼󥰥ꥹȤ˵ǽޤ."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -8539,7 +8539,7 @@ msgstr " %(remote)s "
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "%(realname)s ؤˤϻʲԤξǧɬפǤ"
-#: Mailman/MailList.py:1056 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s "
@@ -8747,7 +8747,8 @@ msgstr ""
"%(year)04iǯ %(mon)s %(day)2i (%(wday)s) %(hh)02i:%(mm)02i:%(ss)02i "
"%(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
+#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -8760,29 +8761,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8838,45 +8853,54 @@ msgstr ""
"ʤȤ -r -d Τɤ餫1Ĥλ꤬ɬפǤ.\n"
"ξꤹ, `-' ȤΤϤɤ餫1ĤǤ.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Ѥ: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "ޤ̵ʥ᡼륢ɥ쥹: "
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "ޤ̵ʥ᡼륢ɥ쥹: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "ʥɥ쥹 (§ʸ): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "񤷤ޤ: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "񤷤ޤ: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "-w/--welcome-msg ؤΰ㤤ޤ: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "-a/--admin-notify ؤΰ㤤ޤ: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr "ޤȤɤߤ̤ξβɸϤɤ߹ळȤϤǤޤ."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "%(listname)s ȤꥹȤϤޤ"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ko/LC_MESSAGES/mailman.po b/messages/ko/LC_MESSAGES/mailman.po
index 988228d5..bc72e6c3 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -16,168 +16,168 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
#, fuzzy
msgid "size not available"
msgstr "̿ ϴ."
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr ""
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr " "
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr ""
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "޼ մϱ?"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
#, fuzzy
msgid "thread"
msgstr " "
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
#, fuzzy
msgid "subject"
msgstr " "
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
#, fuzzy
msgid "date"
msgstr "¥ "
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
#, fuzzy
msgid "figuring article archives\n"
msgstr "īװ "
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
#, fuzzy
msgid "May"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
#, fuzzy
msgid "December"
msgstr "ȸ"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
#, fuzzy
msgid "November"
msgstr "ȸ"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
#, fuzzy
msgid "September"
msgstr "ȸ"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
#, fuzzy
msgid "First"
msgstr "ϸ Ʈ"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
#, fuzzy
msgid "Third"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
#, fuzzy
msgid "Updating HTML for article %(seq)s"
msgstr " [%(archive)s] ε Ʈ Դϴ."
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr ""
@@ -242,7 +242,7 @@ msgstr ""
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "( )"
@@ -260,7 +260,7 @@ msgid "Administrator"
msgstr ""
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -269,7 +269,7 @@ msgstr "<em>%(safelistname)s</em> ϸ Ʈ ʽϴ."
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -279,7 +279,7 @@ msgstr ""
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -292,7 +292,7 @@ msgid "Authorization failed."
msgstr "μ "
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -309,7 +309,7 @@ msgstr ""
" Ŀ ϳ Ͻñ ٶϴ."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr ": "
@@ -338,11 +338,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s ϸ - κ ũ"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "ȯմϴ! ~~ Ǽ. ^^"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr ""
@@ -394,16 +394,16 @@ msgstr "ϸ Ʈ Ұ "
msgid "<p>(Send questions and comments to "
msgstr "<p>( Ǵ ּҷ ֽʽÿ: "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "ϸ Ʈ"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr ""
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[ ϴ.]"
@@ -558,7 +558,7 @@ msgstr " ̸:"
msgid "Regexp:"
msgstr "ǥ:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr ":"
@@ -718,7 +718,7 @@ msgid "nodupes"
msgstr "ߺ Ⱦ!"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr " "
@@ -750,7 +750,7 @@ msgstr ""
msgid "notmetoo"
msgstr " Ⱦ!"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "ޱ"
@@ -871,7 +871,7 @@ msgstr " ڵ ٷ ԽŰų ʴ ұ?"
msgid "Invite"
msgstr "ʴϱ"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "ϱ"
@@ -1095,7 +1095,7 @@ msgstr "߸/ E ּ"
msgid "Hostile address (illegal characters)"
msgstr " ּԴϴ. ( ʴ ڸ >մϴ.)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1751,8 +1751,8 @@ msgstr ""
"\n"
"<p> Ȥ Ż û ϱ ؼ <em>ϰ </em> ."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Żϱ"
@@ -2393,11 +2393,11 @@ msgstr "HTML ʾҽϴ."
msgid "HTML successfully updated."
msgstr "HTML Ʈ Ǿϴ."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s ϸ Ʈ"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2405,7 +2405,7 @@ msgstr ""
"<p> %(hostname)s 󿡴 %(mailmanlink)s\n"
" ϸ Ʈ ϴ."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2418,11 +2418,11 @@ msgstr ""
"Ʈ ϰų, Ͻðų, Ż ϰų, "
" ϽǷ ϸ Ʈ ̸ Ŭϼ."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "ùٸ"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
#, fuzzy
msgid ""
" To visit the general information page for an unadvertised list,\n"
@@ -2433,11 +2433,11 @@ msgstr ""
" Ʈ ̽ø, ϸ Ʈ ̽ ã "
" ִ"
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "Ʈ Ұ "
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
#, fuzzy
msgid ""
" to find the management interface for your list.\n"
@@ -2445,11 +2445,11 @@ msgid ""
msgstr ""
" 湮 ֽϴ.\t<p> ǻ ּҷ ֽʽÿ:"
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr " κ"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr " "
@@ -2472,76 +2472,76 @@ msgstr "E ּҰ ־ ʾҽϴ."
msgid "Illegal Email Address: %(safeuser)s"
msgstr "̻ E ּҸ ּ̽ϴ."
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "%(safeuser)s ڰ ϴ."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Ȯ E ϴ."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
msgstr " Ż û Ʈ ڿ ޵Ǿϴ."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr " н带 ſ ޵Ǿϴ"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr " "
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr " н带 ſ ޵Ǿϴ"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
#, fuzzy
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "%(hostname)s %(safeuser)s Ʈ "
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "û ϸ Ʈ 湮ϽǷ ũ Ŭϼ."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "E ּҰ ʽϴ!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr " ̹ E ּҸ Դϴ."
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2550,33 +2550,33 @@ msgid ""
"%(safeuser)s will be changed. "
msgstr ""
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
#, fuzzy
msgid "The new address is already a member: %(newaddr)s"
msgstr "%(newaddr)s ̹ Ʈ ȸԴϴ."
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "E ּҴ ȵ˴ϴ."
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
#, fuzzy
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Ȯ ޼ %(newaddr)s ϴ."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "߸ E ּҸ ּ̽ϴ."
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "̻ E ּҸ ּ̽ϴ."
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s ̹ Ʈ ȸԴϴ."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2587,12 +2587,12 @@ msgstr ""
" ִٰ Ͻø Ʈ ( %(owneraddr)s ) Ͻñ "
"ϴ."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
#, fuzzy
msgid "Member name successfully changed. "
msgstr "ȸ ̸ Ǿϴ."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2602,15 +2602,15 @@ msgstr ""
" ʾҽϴ. ٸ "
" Ǿϴ."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "н() ȵ˴ϴ."
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "н() ʽϴ!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2621,12 +2621,12 @@ msgstr ""
" ʾҽϴ. ٸ "
" Ǿϴ."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "йȣ Ǿϴ."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2635,11 +2635,11 @@ msgstr ""
" Ʒ <em>Żϱ</em>ư üũڽ ν Ż û"
" Ȯؾ մϴ. Ż ʾҽϴ!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Ż "
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2649,7 +2649,7 @@ msgstr ""
" Ż û Ʈ ۰ ޵Ǿϴ. "
" ۰ EϷ ֽϴ."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2663,7 +2663,7 @@ msgstr ""
"ֽϴ. Ż  ø %(owneraddr)s ("
"Ʈ ) ֽñ ٶϴ."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2671,7 +2671,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2682,7 +2682,7 @@ msgstr ""
" ʾҽϴ. ٸ "
" Ǿϴ."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2693,63 +2693,63 @@ msgstr ""
" ʾҽϴ. ٸ "
" Ǿϴ."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr " Ͽϴ."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr " ϳ ̻ ֽϴ."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>, ŻϽ մϴ.</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr " йȣ ϱ"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr " ٸ "
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr " йȣ EϷ ~"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "йȣ"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "α ƿ"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr " ϱ"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr ""
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr ""
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr ""
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr " E ּҿ ̸ ϱ"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em> ǵ ϴ.</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2759,20 +2759,20 @@ msgstr ""
"̹ Ǿ ִ ּ(<em>%(cpuser)s</em) ϸ Ʈ ϼ̽"
"."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s Ʈ: ȸ α "
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "E ּҿ"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
#, fuzzy
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s Ʈ: %(safeuser)s ȸ "
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
#, fuzzy
msgid ""
"In order to change your membership option, you must\n"
@@ -2801,19 +2801,19 @@ msgstr ""
" °ų, ȭ鿡 ִ \"<em>α׾ƿ</em>\"( "
" α ϸ ֽϴ.) Ŭϸ ڵ ϴ."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E ּ:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "йȣ:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "α"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2826,11 +2826,11 @@ msgstr ""
"ϳ ȳ ñ ٶϴ.) Ϸϱ ũ "
"ϰ ֽϴ."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "н (Reminder)"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2838,27 +2838,27 @@ msgstr ""
"<em> йȣ !</em> ư Ŭν йȣ ſ"
" ޵ Դϴ."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr " йȣ !"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "û Ʋϴ: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr " ɷ λ"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "̸: "
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "(ǥ):"
@@ -4702,11 +4702,11 @@ msgstr " ϴ."
msgid "Invalid value for variable: %(property)s"
msgstr "߸ : %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "%(property)s ɼ ߸ E ּ : %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4719,7 +4719,7 @@ msgstr ""
"<code>%(bad)s</code> <p> Ʈ ϱ ۵ "
" ֽϴ. "
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5606,7 +5606,16 @@ msgstr ""
"<p><b>real_name</b> Ư ʾҽϴ. ̰ ҹڸ ٲ "
"ֽϴ.<p>"
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<p><b>real_name</b> Ư ʾҽϴ. ̰ ҹڸ ٲ "
+"ֽϴ.<p>"
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -7778,39 +7787,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s , %(volume)d, ȣ %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr " Ӹ"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr " Ӹ"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr " :\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr " (%(msgcount)d ޼)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr " "
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "κ --"
@@ -7963,36 +7972,36 @@ msgstr "%(listname)s ϸ Ʈ ŻǼ̽ϴ."
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "%(listname)s ϸ Ʈ ŻǼ̽ϴ."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr "%(remote)s "
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "%(realname)s ϱ ؼ ۰ ʿմϴ."
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s "
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "Żϱ ۰ ʿմϴ."
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s Ż "
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s Ż "
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "%(name)s ϱ ؼ ʿմϴ."
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr ""
@@ -8164,7 +8173,7 @@ msgid ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
msgstr ""
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -8177,29 +8186,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8213,45 +8236,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr ""
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Ʈ ȸ"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr ""
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr ""
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/lt/LC_MESSAGES/mailman.po b/messages/lt/LC_MESSAGES/mailman.po
index aa5e4005..20b7ebaf 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -14,169 +14,169 @@ msgstr ""
"Content-Type: text/plain; charset=ISO-8859-13\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
#, fuzzy
msgid "size not available"
msgstr "Negalima"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr "%(size)i bait"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Nenurodyta tema"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
#, fuzzy
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Ankstesn inut:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Tolesn inut:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "gija"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "tema"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autorius"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
#, fuzzy
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>iuo metu archyv nra. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
#, fuzzy
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip'd Text%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
#, fuzzy
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
#, fuzzy
msgid "figuring article archives\n"
msgstr "nustatant straipsni archyvus\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Balandis"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Vasaris"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Sausis"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Kovas"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Rugpjtis"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Liepa"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Birelis"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Gegu"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Gruodis"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Lapkritis"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Spalis"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Rugsjis"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Pirmas"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Ketvirtas"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Antras"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Treias"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
#, fuzzy
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s quarter %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
#, fuzzy
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
#, fuzzy
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Pirmadienio savait %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
#, fuzzy
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
#, fuzzy
msgid "Computing threaded index\n"
msgstr "Skaiiuojamas indeksas gijomis\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
#, fuzzy
msgid "Updating HTML for article %(seq)s"
msgstr "Atnaujinamas straipsni HTML "
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
#, fuzzy
msgid "article file %(filename)s is missing!"
msgstr "praleistas straipsni failas %(filename)s !"
@@ -247,7 +247,7 @@ msgstr " The last bounce received from you was dated %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(nenurodyta tema)"
@@ -266,7 +266,7 @@ msgid "Administrator"
msgstr "administratoriaus"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -275,7 +275,7 @@ msgstr "Nra forumo <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -285,7 +285,7 @@ msgstr "Klaida"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -298,7 +298,7 @@ msgid "Authorization failed."
msgstr "Neskminga registracija"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -318,7 +318,7 @@ msgstr ""
" forumu."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Perspjimas: "
@@ -347,11 +347,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s forum priirtojo nuorodos"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Kvieiame!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
#, fuzzy
msgid "Mailman"
msgstr "Mailman"
@@ -413,16 +413,16 @@ msgstr "the mailing list overview page"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Send questions and comments to "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Sraas"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Apraas"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[nerastas apraas]"
@@ -600,7 +600,7 @@ msgstr "Topic name:"
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Apraas:"
@@ -776,7 +776,7 @@ msgid "nodupes"
msgstr "nodupes"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
#, fuzzy
msgid "digest"
msgstr "digest"
@@ -814,7 +814,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "not metoo"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nomail"
@@ -960,7 +960,7 @@ msgstr "Usakyti iems vartotojams forum ar pakviesti juos?"
msgid "Invite"
msgstr "Pakviesti"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Usakyti"
@@ -1192,7 +1192,7 @@ msgstr "Neteisingas el. pato adresas"
msgid "Hostile address (illegal characters)"
msgstr "Hostile address (illegal characters)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1833,8 +1833,8 @@ msgid ""
" request."
msgstr ""
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Atsisakyti"
@@ -2390,17 +2390,17 @@ msgstr "HTML nepakeistas."
msgid "HTML successfully updated."
msgstr "HTML skmingai atnaujintas."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s forumai"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
msgstr ""
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2414,11 +2414,11 @@ msgstr ""
"\tSpustelkite forumo pavadinim, jei norite daugiau suinoti apie forum,\n"
"\ttaip pat j usisakyti arba jo atsisakyti."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "dein"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2430,11 +2430,11 @@ msgstr ""
" forumo pavadinim.\n"
" <p>Forum administratoriams: aplank "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "forum administratori pagrindinis puslapis"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
#, fuzzy
msgid ""
" to find the management interface for your list.\n"
@@ -2443,11 +2443,11 @@ msgstr ""
" rasite js forumo valdymo ssaj.\n"
" <p>Klausimus bei atsiliepimus siskite "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Keisti nustatymus"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "irti puslap"
@@ -2470,17 +2470,17 @@ msgstr "Nevestas adresas"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Neteisingas adresas"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nra tokio vartotojo: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Jums isistas patvirtinimas."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2489,59 +2489,59 @@ msgstr ""
"Js prisijungimo praymas buvo persistas forumo administratoriui\n"
" %(listowner)s."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Jums isistas slaptaodio priminimas."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Neskmingas prisijungimas."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Jums isistas slaptaodio priminimas."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
#, fuzzy
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Ivardinti %(safeuser)s usisakymus serveryje %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr ""
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr ""
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr ""
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2550,79 +2550,79 @@ msgid ""
"%(safeuser)s will be changed. "
msgstr ""
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Naujasis adresas %(newaddr)s jau forumo dalyvis"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Negalima praleisti adreso"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "%(newaddr)s isistas patvirtinimo laikas."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Neteisingas adresas"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Neteisingas adresas"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s io forumo dalyvis nuo anksiau."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
" the list owners at %(owneraddr)s."
msgstr ""
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Dalyvio vardas skmingai pakeistas. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
msgstr ""
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Slaptaodis negali bti tuias"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Slaptaodiai nesutampa!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
" password for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Slaptaodis skmingai pakeistas."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
" have not been unsubscribed!"
msgstr ""
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Atsisakymo rezultatai"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2630,7 +2630,7 @@ msgid ""
" decision."
msgstr ""
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2640,7 +2640,7 @@ msgid ""
" %(owneraddr)s."
msgstr ""
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2648,7 +2648,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2656,7 +2656,7 @@ msgid ""
" other options have been set successfully."
msgstr ""
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2664,83 +2664,83 @@ msgid ""
" your other options have been set successfully."
msgstr ""
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Skmingai rate nustatymus."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Gausite vien paskutin rinkin."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Taip, a tikrai noriu atsisakyti</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Pakeiskite mano slaptaod"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Parodyti kitus mano usisakytus forumus"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Isiskite man mano slaptaod"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "Slaptaodis"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Atsijungti"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Patvirtinti mano pakeitimus"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dien"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "diena"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr ""
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Pakeisti Mano Adres ir Vard"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr ""
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
"<em>%(cpuser)s</em>."
msgstr ""
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Forumo %(realname)s dalyvi nustatymo puslapio prisijungimas"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr " el. pato adresas ir "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
#, fuzzy
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Forumo %(realname)s dalyvio %(safeuser)s nustatymai"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2771,19 +2771,19 @@ msgstr ""
" isaugoti.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr " El. pato adresas:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr " Slaptaodis:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr " Prisijungti"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2799,11 +2799,11 @@ msgstr ""
" galite patvirtinti ir laiku; r. instrukcijas patvirtinimo\n"
" laike)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr " Slaptaodio priminimas"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2811,27 +2811,27 @@ msgstr ""
"Spustelkite mygtuk <em>Priminti</em> \n"
"\t\tir Jums bus isistas Js slaptaodis."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Priminti"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr ""
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr ""
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr ""
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Vardas:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Fragmentas (regexp):"
@@ -4563,14 +4563,14 @@ msgstr ""
msgid "Invalid value for variable: %(property)s"
msgstr ""
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
#, fuzzy
msgid "Bad email address for option %(property)s: %(error)s"
msgstr ""
"Badly formed options entry:\n"
" %(record)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4580,7 +4580,7 @@ msgid ""
" problem."
msgstr ""
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5328,7 +5328,13 @@ msgid ""
" changed! It must be an integer > 0."
msgstr ""
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -7209,39 +7215,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr ""
@@ -7371,36 +7377,36 @@ msgstr "You are not a member of the %(listname)s mailing list"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "You are not a member of the %(listname)s mailing list"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " nuo %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "forumo %(realname)s usisakymui btinas priirtojo patvirtinimas"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s usisakymo patvirtinimas"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "atsisakymui btinas priirtojo patvirtinimas"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s atsisakymo patvirtinimas"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s atsisakymo patvirtinimas"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr ""
@@ -7575,7 +7581,7 @@ msgid ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
msgstr ""
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -7588,29 +7594,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -7624,45 +7644,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr ""
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Usisak: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Usisak: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Nra tokio forumo: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/mailman.pot b/messages/mailman.pot
index 581ce839..be52d300 100644
--- a/messages/mailman.pot
+++ b/messages/mailman.pot
@@ -5,7 +5,7 @@
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
-"POT-Creation-Date: Wed Apr 11 18:40:25 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,157 +15,157 @@ msgstr ""
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr ""
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr ""
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid ""
"figuring article archives\n"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid ""
"Computing threaded index\n"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr ""
@@ -292,7 +292,7 @@ msgid ""
msgstr ""
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr ""
@@ -995,7 +995,7 @@ msgstr ""
msgid "Hostile address (illegal characters)"
msgstr ""
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -4056,11 +4056,11 @@ msgstr ""
msgid "Invalid value for variable: %(property)s"
msgstr ""
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr ""
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4069,7 +4069,7 @@ msgid ""
" problem."
msgstr ""
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6590,7 +6590,7 @@ msgstr ""
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
-#: Mailman/MailList.py:1056 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr ""
@@ -6775,7 +6775,7 @@ msgstr ""
msgid "%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
msgstr ""
-#: bin/add_members:26
+#: bin/add_members:22
#, docstring
msgid ""
"Add members to a list from the command line.\n"
@@ -6789,27 +6789,40 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -6823,45 +6836,53 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr ""
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+msgid "Invited: %(member)s"
+msgstr ""
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr ""
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271
#: bin/find_member:97 bin/inject:91 bin/list_admins:90 bin/list_members:252
#: bin/sync_members:222 cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr ""
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/nl/LC_MESSAGES/mailman.po b/messages/nl/LC_MESSAGES/mailman.po
index c43d65d6..206cf862 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -17,157 +17,157 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "grootte niet beschikbaar"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Geen onderwerp"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " op "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Vorig bericht:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Volgend Bericht:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "Draad"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "onderwerp"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "auteur"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "datum"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Er zijn momenteel geen archieven. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gezipte tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Tekst %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "berekenen van artikelarchieven\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "april"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "februari"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "januari"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "maart"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "augustus"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "juli"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "juni"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "mei"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "december"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "november"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "oktober"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "september"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Eerste"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Vierde"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Tweede"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Derde"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s kwartaal %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "De week van maandag %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Berekenen van draadindex\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Updaten van HTML voor artikel %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "artikelbestand %(filename)s is niet gevonden!"
@@ -229,7 +229,7 @@ msgstr " De laatste bounce ontvangen van u was gedateerd %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(geen onderwerp)"
@@ -247,7 +247,7 @@ msgid "Administrator"
msgstr "Beheerder"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -256,7 +256,7 @@ msgstr "Er is geen lijst met de naam <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -266,7 +266,7 @@ msgstr "Fout"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -279,7 +279,7 @@ msgid "Authorization failed."
msgstr "Autorisatie mislukt."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -298,7 +298,7 @@ msgstr ""
" anders is de maillijst onbruikbaar."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Waarschuwing: "
@@ -327,11 +327,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Beheerlinks van %(hostname)s maillijsten"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Welkom!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -385,16 +385,16 @@ msgstr "de maillijst overzichtspagina"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Voor vragen kunt u terecht bij "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lijst"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Omschrijving"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[geen omschrijving beschikbaar]"
@@ -551,7 +551,7 @@ msgstr "Naam onderwerp:"
msgid "Regexp:"
msgstr "Uitdrukking:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Omschrijving:"
@@ -711,7 +711,7 @@ msgid "nodupes"
msgstr "geen<br>dubbele"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "verzamel<br>mail"
@@ -743,7 +743,7 @@ msgstr "S"
msgid "notmetoo"
msgstr "geen<br>eigen"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr ""
@@ -874,7 +874,7 @@ msgstr "Meld deze leden nu aan of stuur ze een uitnodiging?"
msgid "Invite"
msgstr "Uitnodigen"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Aanmelden"
@@ -1101,7 +1101,7 @@ msgstr "Ongeldig e-mailadres"
msgid "Hostile address (illegal characters)"
msgstr "Verdacht adres (niet toegestane lettertekens)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Verboden adres (komt overeen met %(pattern)s)"
@@ -1780,8 +1780,8 @@ msgstr ""
" <p>Of klik op <em>Annuleer en negeer</em> om uw afmeldingsverzoek in\n"
" te trekken."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Afmelden"
@@ -2460,11 +2460,11 @@ msgstr "Pagina niet veranderd."
msgid "HTML successfully updated."
msgstr "HTML met succes bijgewerkt."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Maillijsten op %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2472,7 +2472,7 @@ msgstr ""
"<p>Er zijn momenteel geen publieke\n"
" %(mailmanlink)s maillijsten op %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2486,11 +2486,11 @@ msgstr ""
" over de lijst, om u aan of af te melden, of om uw\n"
" persoonlijke instellingen te wijzigen."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "rechts"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2502,11 +2502,11 @@ msgstr ""
" lijstnaam erachter.\n"
" <p>Lijstbeheerders, u kunt doorgaan naar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "de lijstbeheer-overzichtspagina"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2514,11 +2514,11 @@ msgstr ""
" om de beheerpagina's te vinden van uw lijst.\n"
" <p>Vragen over het gebruik van de maillijsten kunt u richten aan "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Wijzig opties"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Bekijk deze pagina in"
@@ -2540,17 +2540,17 @@ msgstr "Er is geen adres opgegeven"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Ongeldig e-mailadres: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Niet bestaand lid: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Het bevestigingsbericht is verzonden."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2559,7 +2559,7 @@ msgstr ""
"Uw afmeldingsverzoek is doorgestuurd\n"
" naar de lijstmoderator ter goedkeuring."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2568,15 +2568,15 @@ msgstr ""
"Indien u lid bent van de lijst, is er nu een herinneringsbericht met uw "
"wachtwoord naar u verzonden."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Authentificatie is mislukt."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Een herinneringsbericht met uw wachtwoord is naar u verzonden."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2584,16 +2584,16 @@ msgstr ""
"The lijstbeheerder mag de andere abonnementen\n"
" van deze gebruiker niet inzien."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Opmerking:"
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Aanmeldingen voor %(safeuser)s op %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2601,7 +2601,7 @@ msgstr ""
"Klik op een link om uw instellingenpagina voor de\n"
" betreffende maillijst te bezoeken."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2611,15 +2611,15 @@ msgstr ""
" andere abonnementen van deze gebruiker niet wijzigen. Het\n"
" abonnement op deze maillijst is echter gewijzigd."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adressen komen niet overeen!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "U gebruikt reeds dat e-mailadres"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2633,31 +2633,31 @@ msgstr ""
"voor alle maillijsten waarvan u lid bent. Na bevestiging zal het adres\n"
"%(safeuser)s in alle maillijsten worden gewijzigd. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Het nieuwe adres %(newaddr)s is reeds lid."
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "E-mailadressen dienen ingevuld te worden"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Een bevestigingsbericht is verzonden naar %(newaddr)s."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Foutief e-mailadres opgegeven"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Ongeldig e-mailadres opgegeven"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s is al lid van de lijst."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2668,11 +2668,11 @@ msgstr ""
" kunt u contact opnemen met de lijsteigenaren:\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Gebruikersnaam is met succes veranderd. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2680,15 +2680,15 @@ msgstr ""
"De lijstbeheerder kan het wachtwoord\n"
" van een gebruiker niet wijzigen."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Wachtwoorden dienen ingevuld te worden"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Wachtwoorden kwamen niet overeen!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2698,12 +2698,12 @@ msgstr ""
" andere abonnementen van deze gebruiker niet wijzigen. Het\n"
" wachtwoord voor deze maillijst is echter gewijzigd."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Wachtwoord is met succes veranderd."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2713,11 +2713,11 @@ msgstr ""
" onder de button <em>Afmelden</em> aan te vinken. U\n"
" bent niet afgemeld!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Afmeldingsresultaat"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2729,7 +2729,7 @@ msgstr ""
" ontvangen zodra de lijstmoderators een beslissing hebben\n"
" genomen."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2745,7 +2745,7 @@ msgstr ""
" contact op met de lijsteigenaren op het volgende e-mailadres:\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2756,7 +2756,7 @@ msgstr ""
" andere abonnementen van deze gebruiker niet wijzigen. De\n"
" abonnementsopties van deze maillijst zijn echter gewijzigd."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2768,7 +2768,7 @@ msgstr ""
" optie niet worden aangezet. Alle andere wijzigingen van uw\n"
" instellingen zijn wel met succes doorgevoerd."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2780,63 +2780,63 @@ msgstr ""
" worden aangezet. Alle andere wijzigingen van uw instellingen\n"
" zijn wel met succes doorgevoerd."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "De wijzigingen van uw instellingen zijn met succes doorgevoerd."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "U krijgt wellicht nog ��n laatste verzamelmail toegestuurd."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Ja, ik wil mezelf echt afmelden</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Wijzig mijn wachtwoord"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Laat mijn andere aanmeldingen zien"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Stuur mijn wachtwoord per e-mail toe"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "wachtwoord"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Uitloggen"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Verstuur de wijzigingen"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dagen"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dag"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Verander mijn e-mailadres en naam"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Geen onderwerpen gedefinieerd</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2846,20 +2846,20 @@ msgstr ""
"U bent op deze lijst aangemeld met het adres\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s lijst: inlogpagina voor lidmaatschapsinstellingen"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-mailadres en "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr ""
"%(realname)s lijst: lidmaatschapsinstellingen voor gebruiker %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2887,19 +2887,19 @@ msgstr ""
" niet ge�ffectueerd worden.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-mailadres:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Wachtwoord"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Inloggen"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2913,11 +2913,11 @@ msgstr ""
" dit desgewenst ook per e-mail doen; het bevestigingsbericht bevat\n"
" instructies daartoe)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Wachtwoordherinnering"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2925,27 +2925,27 @@ msgstr ""
"Door op de button <em>Herinnering</em> te klikken, krijgt u uw wachtwoord\n"
" per e-mail toegestuurd."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Herinnering"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<onvolledig>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Vermelde onderwerp is niet geldig: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Details onderwerpfilter"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Naam:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Patroon (als uitdrukking):"
@@ -5191,11 +5191,11 @@ msgstr "Er was geen verzamelmail om te verzenden."
msgid "Invalid value for variable: %(property)s"
msgstr "Ongeldige waarde voor variabele: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Ongeldig e-mailadres voor instelling %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5211,7 +5211,7 @@ msgstr ""
"functioneert\n"
" totdat u dit probleem heeft gecorrigeerd."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6293,7 +6293,16 @@ msgstr ""
"<b>admin_member_chunksize</b> attribuut niet\n"
" veranderd! Het moet een heel getal zijn > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>admin_member_chunksize</b> attribuut niet\n"
+" veranderd! Het moet een heel getal zijn > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8841,39 +8850,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Bericht geweigerd vanwege overeenkomst met spamfilterregel"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Verzamelmail, Volume %(volume)d, Nummer %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "verzamelmail-header"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Verzamelmail-header"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Onderwerpen van vandaag:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Onderwerpen van vandaag (%(msgcount)d berichten)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Bericht genegeerd door inhoudsfilter]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "verzamelmail-voettekst"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Verzamelmail-voettekst"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Eind van "
@@ -9001,36 +9010,36 @@ msgstr ""
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Uw bevestiging is vereist voor afmelding van de %(listname)s maillijst"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " van %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "aanmeldingen bij %(realname)s vereisen goedkeuring door moderator"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s aanmeldingsbericht"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "afmeldingen vereisen goedkeuring door moderator"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s afmeldingsbericht"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s afmeldingsbericht"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "aanmeldingen bij %(name)s vereisen goedkeuring door beheerder"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Laatste automatisch bericht voor vandaag"
@@ -9217,7 +9226,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9230,29 +9239,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9266,45 +9289,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr ""
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Leden van de lijst"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr ""
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr ""
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/no/LC_MESSAGES/mailman.po b/messages/no/LC_MESSAGES/mailman.po
index c920de9e..e6a915da 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,157 +15,157 @@ msgstr ""
"Content-Transfer-Encoding: quoted-printable\n"
"Generated-By: pygettext.py 1.3\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "strrelsen er ikke tilgjengelig"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr ""
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Uten tittel"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr ""
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Forrige melding:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Neste melding:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "tr&aring;d"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "tittel"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "forfatter"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "dato"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Arkivet er for tiden tomt.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip'et tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Tekstt%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "lager arkiv\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "April"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Januar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mars"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "August"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Juli"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Juni"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mai"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Desember"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktober"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Frste"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Fjerde"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Andre"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tredje"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s kvartal %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Uken med mandag %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Bygger innholdsfortegnelse\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Oppdaterer HTML for artikkel %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "artikkelfilen %(filename)s mangler!"
@@ -227,7 +227,7 @@ msgstr " Sist mottatte returmelding fra deg var datert %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(uten tittel)"
@@ -245,7 +245,7 @@ msgid "Administrator"
msgstr "Administrator"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -254,7 +254,7 @@ msgstr "Listen finnes ikke: <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -264,7 +264,7 @@ msgstr "Feil"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -277,7 +277,7 @@ msgid "Authorization failed."
msgstr "Feil passord"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -293,7 +293,7 @@ msgstr ""
"Dersom du ikke velger minst n av dem, vil epostlisten bli helt ubrukelig!"
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Advarsel: "
@@ -324,11 +324,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Epostlister p&aring; %(hostname)s - Administrativ tilgang"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Velkommen!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -382,16 +382,16 @@ msgstr "oversikt over epostlister"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Send sp&oslash;rsm&aring;l og kommentarer til "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Liste"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Beskrivelse"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[ingen beskrivelse tilgjengelig]"
@@ -550,7 +550,7 @@ msgstr "Navn p&aring; emnet:"
msgid "Regexp:"
msgstr "Regexp-uttrykk:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Beskrivelse:"
@@ -710,7 +710,7 @@ msgid "nodupes"
msgstr "unng duplikater"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "sammendrag-modus"
@@ -742,7 +742,7 @@ msgstr "R"
msgid "notmetoo"
msgstr "ikke-mine"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "stopp epost"
@@ -873,7 +873,7 @@ msgstr "Melde p disse adressene umiddelbart, eller invitere dem?"
msgid "Invite"
msgstr "Invitr"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Meld p&aring;"
@@ -1102,7 +1102,7 @@ msgstr "Feil/Ugyldig epostadresse"
msgid "Hostile address (illegal characters)"
msgstr "Farlig epostadresse (inneholder ugyldige tegn)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1778,8 +1778,8 @@ msgstr ""
"<p>Eller klikk <em>Avbryt</em> for &aring; fortsatt v&aelig;re medlem av "
"listen."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Meld meg ut"
@@ -2455,11 +2455,11 @@ msgstr "Ingen endringer i HTML-koden."
msgid "HTML successfully updated."
msgstr "HTML-koden er oppdatert."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Epostlister p&aring; %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2467,7 +2467,7 @@ msgstr ""
"<p>Det er for tiden ingen %(mailmanlink)s epostlister offentlig tilgjengelig "
"p&aring; %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2482,11 +2482,11 @@ msgstr ""
"&aring; melde deg p&aring;, melde deg av, eller\n"
"endre dine personlige innstillinger for listen."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "riktige"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2499,11 +2499,11 @@ msgstr ""
"websiden.\n"
"<p>Listeadministratorer kan benytte "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "administrasjonssiden"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2511,11 +2511,11 @@ msgstr ""
" for &aring; administrere en liste.\n"
"<p>Har du problemer med &aring; benytte listene, kontakt "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Endre Innstillinger"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Se denne siden p&aring;"
@@ -2537,17 +2537,17 @@ msgstr "Ingen epostadresse angitt"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Feil/Ugyldig epostadresse: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Medlemmet finnes ikke: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "En epost med bekreftelse er sendt."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2556,37 +2556,37 @@ msgstr ""
"Din sknad om bli meldt ut av epostlisten m godkjennes\n"
"og er blitt videresendt til listeadministratoren."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "En epost med passordet er sendt til deg."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Innlogging mislyktes."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "En epost med passordet er sendt til deg."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Vise listemedlemskap for %(safeuser)s p&aring; %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2594,22 +2594,22 @@ msgstr ""
"Klikk p&aring; en liste for &aring; g&aring; til dine personlige "
"innstillinger for den."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adressene er ikke like!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Den epostadressen er du allerede p&aring;meldt listen med"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2621,32 +2621,32 @@ msgstr ""
"men du har ogs bedt om endring p alle lister. Etter ditt samtykke vil\n"
"alle andre epostlister som inneholder %(safeuser)s bli endret. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Den nye adressen er allerede pmeldt: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adressene kan ikke v&aelig;re tomme"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr ""
"En foresp&oslash;rsel om bekreftelse er sendt i en epost til %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Ugyldig epostadresse angitt"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Ulovlig epostadresse angitt"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s er allerede medlem av listen."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2656,11 +2656,11 @@ msgstr ""
"Epostadressen du har angitt er utestengt fra denne epostlisten.\n"
"Dersom du tror dette kan vre en feil, kontakt listens eier p %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Navnet er endret. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2672,15 +2672,15 @@ msgstr ""
"gjennomf&oslash;rt, men alle andre endringer du gjorde, er gjennomf&oslash;"
"rt."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Passordene kan ikke v&aelig;re tomme"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Passordene er ikke like!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2693,12 +2693,12 @@ msgstr ""
"gjennomf&oslash;rt, men alle andre endringer du gjorde, er gjennomf&oslash;"
"rt."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Passordet ditt er endret."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2708,11 +2708,11 @@ msgstr ""
"valget for dette.\n"
"Du er IKKE fjernet fra listen!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultat av utmelding"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2723,7 +2723,7 @@ msgstr ""
"vurdert av listemoderatorene.\n"
"Du vil motta en melding s&aring; snart de har tatt en avgj&oslash;relse."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2738,7 +2738,7 @@ msgstr ""
"Har du sp&oslash;rsm&aring;l knyttet til din utmelding, kontakt listens eier "
"p&aring; %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2746,7 +2746,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2759,7 +2759,7 @@ msgstr ""
"gjennomf&oslash;rt, men alle andre endringer du gjorde, er gjennomf&oslash;"
"rt."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2772,63 +2772,63 @@ msgstr ""
"gjennomf&oslash;rt, men alle andre endringer du gjorde, er gjennomf&oslash;"
"rt."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Dine valg er n&aring; satt slik du &oslash;nsket."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Det kan v&aelig;re du vil motta en siste samle-epost."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Ja, jeg vil melde meg ut av listen</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Endre Mitt Passord"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Vise andre lister jeg er medlem av"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Send Meg Passordet Mitt"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "passord"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Logg ut"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Lagre Endringer"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dager"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dag"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Endre Min Adresse og Mitt Navn"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "</em>Ingen emner er definert</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2837,19 +2837,19 @@ msgstr ""
"\n"
"Du er medlem av denne listen med epostadressen <em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s: innlogging til personlige innstillinger"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "epostadressen og "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s: personlige innstillinger for %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2878,19 +2878,19 @@ msgstr ""
"p&aring;sl&aring;tt i nettleseren din, ellers vil ingen endringer lagres.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Epostadresse:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Passord:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Logg inn"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2905,11 +2905,11 @@ msgstr ""
"(Du kan ogs&aring; bekrefte dette via epost; f&oslash;lg instruksjonene i "
"epost du f&aring;r tilsendt.)"
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "P&aring;minnelse om passord"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2917,27 +2917,27 @@ msgstr ""
"Trykker du p&aring; <em>Send P&aring;minnelse</em> knappen, vil du f&aring; "
"tilsendt passordet ditt i en epost."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Send p&aring;minnelse"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<mangler>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Emnet er ikke gyldig: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Mer informasjon om emnefilteret"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Navn:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Filter (regexp-uttrykk):"
@@ -5075,11 +5075,11 @@ msgstr "Det var ingen samle-epost som skulle sendes."
msgid "Invalid value for variable: %(property)s"
msgstr "Ugyldig verdi for: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Ugyldig epostadresse for innstillingen %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5092,7 +5092,7 @@ msgstr ""
"<code>%(bad)s</code>\n"
"<p>Det kan oppst feil med listen din med mindre du retter opp dette."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6131,7 +6131,16 @@ msgstr ""
"<b>real_name</b> ble ikke endret! Du kan kun endre store eller sm&aring; "
"bokstaver i navnet."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>real_name</b> ble ikke endret! Du kan kun endre store eller sm&aring; "
+"bokstaver i navnet."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8604,39 +8613,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Meldingen ble avvist av et filter"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Sammendrag av %(realname)s, Vol %(volume)d, Utgave %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "topptekst"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Topptekst"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dagens emner:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dagens emner (%(msgcount)d meldinger)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Meldingen er forkastet av innholdsfiltreringen]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "bunntekst"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Bunntekst"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Slutt p "
@@ -8784,36 +8793,36 @@ msgstr "Din bekreftelse kreves for bli medlem av epostlisten %(listname)s"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Din bekreftelse kreves for forlate epostlisten %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " fra %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "pmelding p %(realname)s krever godkjenning av moderator"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Melding om pmelding p epostlisten %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "utmelding krever godkjenning av moderator"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Melding om utmelding av epostlisten %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Melding om utmelding av epostlisten %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "pmelding p %(name)s krever godkjenning av administrator"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Siste automatiske svar idag"
@@ -9001,7 +9010,7 @@ msgid ""
msgstr ""
"%(wday)s %(day)2i. %(mon)s %(year)04i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9015,29 +9024,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9095,47 +9118,56 @@ msgstr ""
"Du m benytte minst valgene \"-r\" eller \"-d\". Bare ett av filnavnene kan\n"
"vre \"-\".\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Allerede medlem: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Feil/Ugyldig epostadresse: blank linje"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Feil/Ugyldig epostadresse: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Ugyldige tegn i epostadressen: %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Pmeldt: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Pmeldt: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Ugyldig argument til -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Ugyldig argument til -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Kan ikke lese bde medlemmer i normal-modus og medlemmer i sammendrag-modus "
"fra standard input."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Listen finnes ikke: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/pl/LC_MESSAGES/mailman.po b/messages/pl/LC_MESSAGES/mailman.po
index 1184352d..1514a3b3 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -18,155 +18,155 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: Poedit 1.8.7\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "nieznany rozmiar"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bajtw "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Brak tematu"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " w "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "Poprzednia wiadomo (wedug wtku):"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "Nastpna wiadomo (wedug wtku):"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "wtku"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "tematu"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autora"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "daty"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>W tej chwili nie ma archiwum.</P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Tekst Gzipowany%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Tekst%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "skanowanie wiadomoci do archiwum\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Kwiecie"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Luty"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Stycze"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marzec"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Sierpie"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Lipiec"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Czerwiec"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maj"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Grudzie"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Listopad"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Padziernik"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Wrzesie"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Pierwszy"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Czwarty"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Drugi"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Trzeci"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s kwarta %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Tydzie zaczynajcy si od poniedziaku %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Obliczanie listy wtkw\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Aktualizacja pliku HTML dla wiadomoci %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "brakuje pliku archiwum %(filename)s !"
@@ -228,7 +228,7 @@ msgstr " Ostatni zwrot otrzymano z Twojego adresu dnia %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(brak tematu)"
@@ -246,7 +246,7 @@ msgid "Administrator"
msgstr "Administrator"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -255,7 +255,7 @@ msgstr "Nie znaleziono listy <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -265,7 +265,7 @@ msgstr "Bd"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -278,7 +278,7 @@ msgid "Authorization failed."
msgstr "Bd uwierzytelniania."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "Przekroczono limit czasu formularza. (ochrona da przed oszustwami)"
@@ -296,7 +296,7 @@ msgstr ""
" lista bdzie bezuyteczna."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Uwaga: "
@@ -326,11 +326,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Listy dostpne na serwerze %(hostname)s - Administracja"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Witamy!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -383,16 +383,16 @@ msgstr "stronie informacyjnej danej listy"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Pytania i komentarze kieruj do "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Opis"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[brak opisu]"
@@ -549,7 +549,7 @@ msgstr "Temat:"
msgid "Regexp:"
msgstr "Wyraenie regularne:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Opis:"
@@ -708,7 +708,7 @@ msgid "nodupes"
msgstr "bez duplikatu"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "paczka"
@@ -740,7 +740,7 @@ msgstr "Z"
msgid "notmetoo"
msgstr "bez kopii"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "wy."
@@ -864,7 +864,7 @@ msgstr "Chcesz zapisa, czy tylko zaprosi uytkownikw?"
msgid "Invite"
msgstr "Zapro"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Zapisz"
@@ -1098,7 +1098,7 @@ msgstr "Nieprawidowy adres e-mail"
msgid "Hostile address (illegal characters)"
msgstr "Nieprawidowy adres (niedopuszczalne znaki)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Adres na czarnej licie (pasuje do %(pattern)s)"
@@ -1757,8 +1757,8 @@ msgstr ""
"\n"
" <p>Nacinij przycisk <em>Anuluj</em>, aby nie wypisywa si z tej listy."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Wypisz"
@@ -2426,11 +2426,11 @@ msgstr "Strona nie zostaa zmieniona."
msgid "HTML successfully updated."
msgstr "Strona HTML zostaa zaktualizowana."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listy dostpne na serwerze %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2438,7 +2438,7 @@ msgstr ""
"<p>Nie ma obecnie adnych, publicznie dostpnych %(mailmanlink)s\n"
" list na serwerze %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2453,11 +2453,11 @@ msgstr ""
" zmieni ustawienia subskrypcji,\n"
" lub wypisa si."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "prawo"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2469,11 +2469,11 @@ msgstr ""
" i nazw %(adj)s listy na kocu.\n"
" <p>Opiekunowie list mog przej na "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "gwn stron administracyjn"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2481,11 +2481,11 @@ msgstr ""
".\n"
" <p>Pytania i komentarze kieruj do "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Edytuj opcje"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Przecz jzyk na"
@@ -2507,18 +2507,18 @@ msgstr "Nie podano adresu"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Nieprawidowy adres: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nie znaleziono prenumeratora: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
msgid "If you are a list member, a confirmation email has been sent."
msgstr ""
"Wiadomo potwierdzajca zostaa wysana (jeli naleysz do subskrybentw "
"listy)."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
@@ -2526,38 +2526,38 @@ msgstr ""
"Proba o wypisanie z listy zostaa skierowana do administratora listy w celu "
"zatwierdzenia (jeli naleysz do subskrybentw listy)."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Haso zostao wysane (jeli naleysz do subskrybentw listy)."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Bd uwierzytelnienia."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Email z przypomnieniem hasa zosta wysany."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
"Administrator listy nie moe zobaczy innych subskrypcji tego uytkownika."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Uwaga: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr ""
"Listy zaprenumerowane przez uytkownika %(safeuser)s na serwerze %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2565,7 +2565,7 @@ msgstr ""
"Kliknij odnonik, aby przej na stron z opcjami dla wybranej\n"
" listy."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2575,15 +2575,15 @@ msgstr ""
"uytkownika. \n"
"Jednake, ustawienia subskrypcji tej listy zostay zmienione."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresy nie s identyczne!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Ten adres jest ju na licie"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2596,31 +2596,31 @@ msgstr ""
"wystpujcy \n"
"we wszystkich innych listach zostanie zmieniony."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "%(newaddr)s jest ju zapisany na list."
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Pole adresu nie moe by puste"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Potwierdzenie zostao wysane do %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Wprowadzie bdny adres"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Nieprawidowy adres"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s jest ju zapisany na list."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2630,11 +2630,11 @@ msgstr ""
"doszo do tego przez pomyk, skontaktuj si z opiekunem listy \n"
" - %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Imi i nazwisko prenumeratora zmienione."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2642,15 +2642,15 @@ msgstr ""
"Administrator listy nie ma moliwoci \n"
"zmiany hasa uytkownika."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Hasa nie mog by puste"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Hasa nie byy identyczne!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2660,12 +2660,12 @@ msgstr ""
" inne subskrypcje uytkownika. Haso dla biecej listy\n"
" zostao zmienione."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Haso zmienione."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2674,11 +2674,11 @@ msgstr ""
"Musisz potwierdzi prob o wypisanie poprzez zaznaczenie opcji\n"
" <em>Wypisz</em> poniej. Nie zostae wypisany!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Raport z wypisywania"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2689,7 +2689,7 @@ msgstr ""
" opiekunowi listy i czeka na jego decyzj, o ktrej \n"
" zostaniesz poinformowany emailem."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2704,7 +2704,7 @@ msgstr ""
" zwizane z wypisaniem, skontaktuj si z administratorem listy\n"
" - %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2715,7 +2715,7 @@ msgstr ""
"uytkownika. \n"
"Jednake, ustawienia subskrypcji tej listy zostay zmienione."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2725,7 +2725,7 @@ msgstr ""
"Administrator listy wyczy dostarczanie listw w postaci paczek.\n"
" Pozostae opcje zostay ustawione."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2736,63 +2736,63 @@ msgstr ""
" a zatem tej opcji nie wprowadzono. Pozostae opcje\n"
" zostay ustawione."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Opcje zostay ustawione."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "By moe otrzymasz jeszcze jedn paczk."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Tak, chc si wypisa</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Zmie haso"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Wywietl moje pozostae subskrypcje"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Wylij mi moje haso"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "haso"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Wyloguj si"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Zatwierd"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dni"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dzie"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Zmie mj adres oraz imi i nazwisko"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nie zdefiniowano tematw</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2802,19 +2802,19 @@ msgstr ""
"Jeste zapisany na list z adresu\n"
"<em>%(cpuser)s</em> (z zachowaniem wielkoci liter)."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Lista %(realname)s: strona logowania dla prenumeratorw"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "adres email oraz "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Lista %(realname)s: opcje prenumeratora %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2843,19 +2843,19 @@ msgstr ""
" nie zadziaaj.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Adres email:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Haso:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Zaloguj"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2871,11 +2871,11 @@ msgstr ""
"przeczytaj\n"
" instrukcje w wysanym potwierdzeniu)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Przypomnienie hasa"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2883,27 +2883,27 @@ msgstr ""
"Po klikniciu przycisku <em>Przypomnij</em>, Twoje\n"
" haso zostanie przesane e-mailem."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Przypomnij"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<brak>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "dany temat jest nieprawidowy: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Szczegy filtra tematycznego"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nazwa:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Wzorzec (wyraenie regularne)"
@@ -4972,11 +4972,11 @@ msgstr "Brak skolejkowanych paczek do wysania."
msgid "Invalid value for variable: %(property)s"
msgstr "Niepoprawna warto zmiennej: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Bdny adres email dla opcji %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4990,7 +4990,7 @@ msgstr ""
"<p>Lista moe nie dziaa prawidowo, jeli nie rozwiesz \n"
" tego problemu."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5959,7 +5959,16 @@ msgstr ""
"Atrybut <b>admin_member_chunksize</b> nie zosta zmieniony\n"
"Przyjmuje on jedynie wartoci liczb cakowitych wikszych od zera."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Atrybut <b>admin_member_chunksize</b> nie zosta zmieniony\n"
+"Przyjmuje on jedynie wartoci liczb cakowitych wikszych od zera."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8322,39 +8331,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Wiadomo odrzucona przez filtr"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Paczka %(realname)s, Tom %(volume)d, Numer %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "nagwek paczki"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Nagwek paczki"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dzisiejsze tematy:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dzisiejsze tematy (%(msgcount)d wiadomoci)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Wiadomo skasowana przez filtr treci]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "stopka paczki"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Stopka Paczki"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Koniec "
@@ -8506,35 +8515,35 @@ msgstr "Prosimy o potwierdzenie prenumeraty listy %(listname)s"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Prosimy o potwierdzenie wypisania si z listy %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " z adresu %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "prenumerata listy %(realname)s wymaga zgody administratora"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Powiadomienie o prenumeracie %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "wypisanie si wymaga zgody administratora"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Powiadomienie o wypisaniu si %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
msgid "%(realname)s address change notification"
msgstr "%(realname)s - powiadomienie o zmianie adresu"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "%(name)s prosi o zatwierdzenie jego subskrypcji"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Dzisiaj nie otrzymasz ju kolejnych automatycznych wiadomoci"
@@ -8720,7 +8729,7 @@ msgid ""
msgstr ""
"%(wday)s, %(day)2i %(mon)s %(year)04i, %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -8733,29 +8742,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8769,45 +8792,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "%(member)s jest ju prenumeratorem"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Bdny format adresu"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Bdny adres email: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Zapisano: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Zapisano: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Lista %(listname)s nie istnieje na tym serwerze"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/pt/LC_MESSAGES/mailman.po b/messages/pt/LC_MESSAGES/mailman.po
index 2a2e8272..f529e743 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2003-02-19 10:14GMT\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -17,157 +17,157 @@ msgstr ""
"Generated-By: pygettext.py 1.4\n"
"X-Generator: KBabel 1.0\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "tamanho no disponvel"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr "%(size)i bytes"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sem assunto"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Mensagem anterior:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Mensagem seguinte:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "Tpico"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "assunto"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>De momento, no existem arquivos. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Text%(sz)s gzipado"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "incluindo arquivos de artigos\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Abril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Fevereiro"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Janeiro"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Maro"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Agosto"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Julho"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Junho"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maio"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Dezembro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Novembro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Outubro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Setembro"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primeiro"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Quarto"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Segundo"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Terceiro"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s trimestre de %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s de %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "A semana que comeou na Segunda, %(day)i de %(month)s de %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i de %(month)s de %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Calculando o ndice do tpico\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Actualizando o HTML do artigo %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "falta o ficheiro do artigo %(filename)s!"
@@ -229,7 +229,7 @@ msgstr " A ltima devoluo recebido de si tinha data de %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sem assunto)"
@@ -247,7 +247,7 @@ msgid "Administrator"
msgstr "Administrador"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -256,7 +256,7 @@ msgstr "No existe essa lista <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -266,7 +266,7 @@ msgstr "Erro"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -279,7 +279,7 @@ msgid "Authorization failed."
msgstr "Falha na autorizao"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -297,7 +297,7 @@ msgstr ""
" discusso ficar, basicamente, inutilizvel."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Aviso: "
@@ -325,11 +325,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "listas de discusso em %(hostname)s - Links Administrativos"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Bem Vindo!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -382,16 +382,16 @@ msgstr "a pgina descritiva da lista de discusso"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Envie questes e comentrios para "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descrio"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[nenhuma descrio disponvel]"
@@ -548,7 +548,7 @@ msgstr "Nome do tpico:"
msgid "Regexp:"
msgstr "Expresso Regular (regexp):"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descrio:"
@@ -708,7 +708,7 @@ msgid "nodupes"
msgstr "sem duplicados"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -740,7 +740,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "menos eu"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "sem mensagens"
@@ -869,7 +869,7 @@ msgstr "Inscrever estes utilizadores agora ou convid-los?"
msgid "Invite"
msgstr "Convidar"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Inscrever"
@@ -1097,7 +1097,7 @@ msgstr "endereo de email incorrecto/invlido"
msgid "Hostile address (illegal characters)"
msgstr "Endereo hostil (caracteres ilegais)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1777,8 +1777,8 @@ msgstr ""
" <p>Ou clique em <em>Cancelar e ignorar</em> para cancelar\n"
" este pedido de anulao da inscrio."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Anular a inscrio"
@@ -2449,11 +2449,11 @@ msgstr "HTML no modificado"
msgid "HTML successfully updated."
msgstr "HTML actualizado com sucesso."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listas de discusso em %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2461,7 +2461,7 @@ msgstr ""
"<p>No existem de momento listas de discusso pblicas do\n"
" %(mailmanlink)s em %(hostname)s"
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2475,11 +2475,11 @@ msgstr ""
" para obter mais detalhes, para se inscrever,\n"
" anular a inscrio ou modificar as preferncias de sua inscrio."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "direita"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2491,11 +2491,11 @@ msgstr ""
" %(adj)s do nome da lista adicionado.\n"
" <p>Administradores da lista, podem visitar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "a pgina descritiva da administrao das listas"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
#, fuzzy
msgid ""
" to find the management interface for your list.\n"
@@ -2504,11 +2504,11 @@ msgstr ""
" para encontrar a interface de gesto da sua lista.\n"
" <p>Envie questes ou comentrios para"
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Editar Opes"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Ver esta pgina em"
@@ -2531,17 +2531,17 @@ msgstr "No foi fornecido endereo"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Endereo de email incorrecto/invlido: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Membro inexistente: %(safeuser)s"
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "A mensagem de confirmao foi enviada."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2550,38 +2550,38 @@ msgstr ""
"O seu pedido de inscrio foi encaminhado para o administrador da lista\n"
"para aprovao."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Foi-lhe enviada uma nota com a sua password"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "A autenticao falhou."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Foi-lhe enviada uma nota com a sua password"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
#, fuzzy
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Inscries em listas para o utilizador %(safeuser)s em %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2589,22 +2589,22 @@ msgstr ""
"Clique num link para visitar a sua pgina de opes para a\n"
" lista de discusso que indicar."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Os endereos no conferem!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "J est a usar esse endereo de email"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
#, fuzzy
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
@@ -2618,31 +2618,31 @@ msgstr ""
"modificao global do endereo. Aps confirmao, qualquer outra lista de \n"
"discusso contendo o endereo %(safeuser)s ser alterada."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "O novo endereo j membro: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Os endereos no podem estar em branco"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Uma mensagem de confirmao foi enviada para %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Foi fornecido um endereo de email incorrecto"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Foi fornecido um endereo de email ilegal"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s j membro desta lista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2653,11 +2653,11 @@ msgstr ""
"Se voc acha que esta restrio est incorrecta, por favor contacte os \n"
"donos da lista em %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "O nome do membro foi modificado com sucesso."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2669,15 +2669,15 @@ msgstr ""
" No entanto as outras opes foram ajustadas \n"
" com sucesso. "
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "As passwords no podem estar vazias"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "As passwords no conferem"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2690,12 +2690,12 @@ msgstr ""
" No entanto as outras opes foram ajustadas \n"
" com sucesso. "
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Password modificada com sucesso."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2705,11 +2705,11 @@ msgstr ""
" a caixa abaixo do boto <em>Anular inscrio</em>.\n"
" No foi anulada a inscrio!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultados da anulao da inscrio"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2721,7 +2721,7 @@ msgstr ""
" Receber uma notificao logo que os moderadores da lista\n"
" tomem uma deciso."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2736,7 +2736,7 @@ msgstr ""
" quaisquer questes sobre a anulao da sua inscrio,\n"
" contacte por favor os donos da lista em %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2744,7 +2744,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2757,7 +2757,7 @@ msgstr ""
" No entanto as outras opes foram ajustadas \n"
" com sucesso."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2770,63 +2770,63 @@ msgstr ""
" No entanto as outras opes foram ajustadas \n"
" com sucesso. "
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Ajustou com sucesso as suas opes."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Poder receber um ltimo digest."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Sim, desejo realmente anular a minha inscrio</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Modificar a minha password"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Listar as minhas outras inscries"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Enviar-me a minha password"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "password"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Sair"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Enviar as minhas modificaes"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dias"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dia"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Modificar o meu Nome e Endereo"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nenhum tpico definido</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2836,20 +2836,20 @@ msgstr ""
"Est inscrito nesta lista com a capitalizao do endereo preservada\n"
"<em>%(cpuser)s</em>"
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "lista %(realname)s: pgina de login das opes de membro"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "endereo de email e "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
#, fuzzy
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "lista %(realname)s: opes de membro para o utilizador %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2877,19 +2877,19 @@ msgstr ""
" browser tem de aceitar cookies, caso contrrio\n"
" nenhuma das suas opes ter efeito."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Endereo de email:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Password:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entrar"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2903,11 +2903,11 @@ msgstr ""
" remoo (tambm pode confirmar por email; veja as\n"
" instrues na mensagem de confirmao)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Nota com a password"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2915,27 +2915,27 @@ msgstr ""
"Ao clicar no boto <em>Lembrar</em>, a sua password\n"
" ser-lhe- enviada por email."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Lembrar"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<faltando>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "O tpico pedido no vlido: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalhes do filtro do tpico"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nome:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Padro (como expr. regular):"
@@ -5092,11 +5092,11 @@ msgstr "No existem digests para enviar."
msgid "Invalid value for variable: %(property)s"
msgstr "Valor invlido para a varivel: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Endereo de email incorrecto para a opo %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5110,7 +5110,7 @@ msgstr ""
" <p>A sua lista pode no operar correctamente at que corrija este \n"
" problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6120,7 +6120,16 @@ msgstr ""
"O atributo <b>real_name</b> no foi modificado! Ele apenas pode diferir\n"
" do nome da lista na capitalizao."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"O atributo <b>real_name</b> no foi modificado! Ele apenas pode diferir\n"
+" do nome da lista na capitalizao."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8597,39 +8606,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Digest %(realname)s, volume %(volume)d, assunto %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "cabealho digest"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Cabealho Digest"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Tpicos de Hoje:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Tpicos de Hoje (%(msgcount)d mensagens)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "rodap do digest"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Rodap do Digest"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fim da "
@@ -8783,36 +8792,36 @@ msgstr "Voc no membro da lista de discusso %(listname)s"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Voc no membro da lista de discusso %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "as inscries em %(realname)s requerem aprovao pelo moderador"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "notificao de inscrio de %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "as anulaes de inscrio requerem aprovao pelo moderador"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "notificao de anulao de inscrio de %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "notificao de anulao de inscrio de %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "as inscries em %(name)s requerem aprovao pelo administrador."
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "ltima notificao de resposta automtica por hoje"
@@ -8996,7 +9005,7 @@ msgstr ""
"%(wday)s, %(day)2i de %(mon)s de %(year)04i - %(hh)02i:%(mm)02i:%(ss)02i "
"%(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9010,29 +9019,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9092,45 +9115,54 @@ msgstr ""
"Voc deve usar no mnimo as opes -n e -d. A maioria dos arquivos\n"
"pode ser '-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "J um membro: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Endereo de email incorrecto/invlido: linha em branco"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Endereo de email incorrecto/invlido: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Endereo hostil (caracteres ilegais): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Inscrito: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Inscrito: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argumento incorrecto para -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argumento incorrecto para -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr "No possvel ler os membros normais e digest do standard input."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Lista inexistente: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/pt_BR/LC_MESSAGES/mailman.po b/messages/pt_BR/LC_MESSAGES/mailman.po
index cbf9bd16..b043e126 100644
--- a/messages/pt_BR/LC_MESSAGES/mailman.po
+++ b/messages/pt_BR/LC_MESSAGES/mailman.po
@@ -7,7 +7,7 @@
msgid ""
msgstr ""
"Project-Id-Version: Mailman\n"
-"POT-Creation-Date: Tue Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2016-03-09 14:12+0000\n"
"Last-Translator: Emerson Ribeiro de Mello <emerson_ml@yahoo.com.br>\n"
"Language-Team: Portuguese <mailman-i18n@python.org>\n"
@@ -18,155 +18,155 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.8.7\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "tamanho no disponvel"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bytes "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Sem assunto"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " em "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "Mensagem anterior (por discusso):"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "Prxima mensagem (por discusso):"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "discusso"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "assunto"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Atualmente, no existem arquivos.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip'd Texto%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Texto%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "montando o arquivamento de artigos\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Abril"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Fevereiro"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Janeiro"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Maro"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Agosto"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Julho"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Junho"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maio"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Dezembro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Novembro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Outubro"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Setembro"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Primeiro"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Quarto"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Segundo"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Terceiro"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s quarto %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "A semana do ms %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Computando o ndice da discusso\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Atualizando HTML para o artigo %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "o arquivo de artigo %(filename)s est faltando!"
@@ -228,7 +228,7 @@ msgstr " O ltimo retorno de mensagem recebido de voc foi em %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(sem assunto)"
@@ -246,7 +246,7 @@ msgid "Administrator"
msgstr "Administrador"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -255,7 +255,7 @@ msgstr "A lista <em>%(safelistname)s</em> no existe"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -265,7 +265,7 @@ msgstr "Erro"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -278,7 +278,7 @@ msgid "Authorization failed."
msgstr "Falha na autorizao."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "O formulrio expirou. (verificar falsificao de requisio)"
@@ -296,7 +296,7 @@ msgstr ""
" ou sua lista de discusso estar basicamente inutilizvel."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Alerta: "
@@ -325,11 +325,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "listas de discusso em %(hostname)s - Links Administrativos"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Bem-Vindo!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -383,16 +383,16 @@ msgstr "a pgina de informao geral das listas de discusso"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Envie questes e comentrios para "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descrio"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[nenhuma descrio disponvel]"
@@ -552,7 +552,7 @@ msgstr "Nome de tpico:"
msgid "Regexp:"
msgstr "Expresso Regular:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descrio"
@@ -711,7 +711,7 @@ msgid "nodupes"
msgstr "sem duplicados"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -743,7 +743,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "menos eu"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "sem e-mail"
@@ -875,7 +875,7 @@ msgstr "Inscrever estes usurios agora ou convida-los?"
msgid "Invite"
msgstr "Convidar"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Inscrever"
@@ -1113,7 +1113,7 @@ msgstr "Endereo de email incorreto ou invlido"
msgid "Hostile address (illegal characters)"
msgstr "Endereo hostil (caracteres ilegais)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Endereo banido (correspondeu %(pattern)s)"
@@ -1793,8 +1793,8 @@ msgstr ""
" <p>Ou clique em <em>Cancelar e descartar</em> para cancelar\n"
" este pedido de remoo."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Desinscrever"
@@ -2470,11 +2470,11 @@ msgstr "Pgina no modificada."
msgid "HTML successfully updated."
msgstr "HTML atualizado com sucesso."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listas de discusso em %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2482,7 +2482,7 @@ msgstr ""
"<p>Atualmente no existem listas de discusso pblicas do \n"
"%(mailmanlink)s em %(hostname)s. "
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2496,11 +2496,11 @@ msgstr ""
" para obter mais detalhes sobre ela, ou para se inscrever,\n"
" desinscrever e modificar as preferncias de sua inscrio."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "direita"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2512,11 +2512,11 @@ msgstr ""
" o nome %(adj)s da lista adicionados no final da URL.\n"
" <p>Administradores de listas, vocs podem visitar "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "a pgina de informao geral de administrao da lista"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2524,11 +2524,11 @@ msgstr ""
" para encontrar a pgina de gerenciamento de sua lista.\n"
" <p>Se estiver tendo problemas ao usar as listas, por favor contate "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Editar Opes"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Ver esta pgina em"
@@ -2550,17 +2550,17 @@ msgstr "Nenhum endereo foi fornecido"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Endereo de email incorreto/invlido: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Membro inexistente: %(safeuser)s"
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
msgid "If you are a list member, a confirmation email has been sent."
msgstr ""
"Se voc um membro da lista, ento uma mensagem de confirmao foi enviada."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
@@ -2568,21 +2568,21 @@ msgstr ""
"Se voc um membro da lista, seu pedido de cancelamento de inscrio foi\n"
"encaminhado para administrador da lista para aprovao."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Se voc um membro da lista, sua senha foi enviada para seu e-mail."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Falha na autenticao."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Um lembrete da sua senha foi enviado por e-mail para voc."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2590,16 +2590,16 @@ msgstr ""
"O administrador da lista pode no ver outros pedidos\n"
"de inscrio para este usurio."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Nota:"
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Inscries na lista para o usurio %(safeuser)s em %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2607,7 +2607,7 @@ msgstr ""
"Clique em um link para visitar sua pgina de opes para a \n"
" lista de discusso."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2618,15 +2618,15 @@ msgstr ""
"Porm, a\n"
" inscrio para essa lista de discusso foi modificada."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Os endereos no conferem!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Voc j est usando aquele endereo de email"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2639,31 +2639,31 @@ msgstr ""
"modificao global de endereo. Aps a confirmao, quaisquer lista de \n"
"discusso contendo o endereo %(safeuser)s ser alterada."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "O novo endereo j um membro: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Os endereos no podem estar em branco"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Uma mensagem de confirmao foi enviada para %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Endereo de email fornecido est incorreto"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Endereo de email fornecido ilegal"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s j um membro desta lista."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2673,11 +2673,11 @@ msgstr ""
" acha que esta restrio incorreta, por favor\n"
" contate os donos da lista em %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Nome do membro modificado com sucesso."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2685,15 +2685,15 @@ msgstr ""
"O administrador da lista no deve mudar a\n"
" senha de um usurio."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "As senhas no podem estar vazias"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "As senhas no conferem"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2703,12 +2703,12 @@ msgstr ""
" senha para as outras inscries deste usurio. Porm, a\n"
" senha para essa lista de discusso foi alterada."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Senha modificada com sucesso."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2718,11 +2718,11 @@ msgstr ""
" a caixa de seleo abaixo do boto <em>Desinscrever</em>. \n"
" Voc no foi desinscrito!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultados da Remoo"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2734,7 +2734,7 @@ msgstr ""
" receber uma notificao assim que os moderadores da lista\n"
" fizeram sua deciso."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2749,7 +2749,7 @@ msgstr ""
" quaisquer questes sobre sua remoo, por favor\n"
" contate os donos da lista em %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2761,7 +2761,7 @@ msgstr ""
" opes sobre a inscrio nesta lista de e-mail foram\n"
" alteradas."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2773,7 +2773,7 @@ msgstr ""
" No entanto suas outras opes foram ajustadas \n"
" com sucesso."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2785,63 +2785,63 @@ msgstr ""
" No entanto suas outras opes foram ajustadas com \n"
" sucesso."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Voc ajustou com sucesso suas opes."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Voc poder receber um ltimo digest."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Sim, eu realmente desejo me descadastrar</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Modificar minha senha"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Listar minhas outras inscries"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Enviar minha senha por e-mail para mim"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "senha"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Sair"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Enviar minhas alteraes"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dias"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dia"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Modificar meu Nome e Endereo"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nenhum tpico definido</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2852,19 +2852,19 @@ msgstr ""
"endereo\n"
"<em>%(cpuser)s</em>"
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "lista %(realname)s: pgina de login com as opes do membro"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "endereo de e-mail e "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "lista %(realname)s: opes de membro para o usurio %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2895,19 +2895,19 @@ msgstr ""
" dever ter os cookies ativados em seu navegador, caso contrrio\n"
" nenhuma de suas alteraes ter efeito."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Endereo de email:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Senha:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Entrar"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2921,11 +2921,11 @@ msgstr ""
" remoo (voc poder tambm confirmar respondendo o email; veja as \n"
" instrues na mensagem de confirmao que receber)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Lembrete de senha"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2933,27 +2933,27 @@ msgstr ""
"Clicando no boto <em>Lembrar</em>, sua senha\n"
" ser encaminhada por e-mail para voc."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Lembrar"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<faltando>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "O tpico solicitado no vlido: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalhes do filtro de tpico"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nome:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Padro (como expr. regular):"
@@ -5133,11 +5133,11 @@ msgstr "No existem digests para serem enviados."
msgid "Invalid value for variable: %(property)s"
msgstr "Valor invlido para a varivel: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Endereo de email incorreto para a opo %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5152,7 +5152,7 @@ msgstr ""
" <p>Sua lista pode no operar corretamente at que corrija este \n"
" problema."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6285,7 +6285,16 @@ msgstr ""
"atributo <b>admin_member_chunksize</b> no\n"
" modificado! Ele deve ser um inteiro > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"atributo <b>admin_member_chunksize</b> no\n"
+" modificado! Ele deve ser um inteiro > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8963,39 +8972,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Mensagem rejeitada pela regra de filtro"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Digest %(realname)s, volume %(volume)d, assunto %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "cabealho digest"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Cabealho Digest"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Tpicos de Hoje:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Tpicos de Hoje (%(msgcount)d mensagens)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Mensagem descartada pelo filtro de contedo]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "legenda do digest"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Legenda do Digest"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Fim da "
@@ -9146,35 +9155,35 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr ""
"Sua confirmao necessria para deixar a lista de discusso %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "as inscries de %(realname)s requerem aprovao pelo moderador"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "notificao de inscrio de %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "as desinscries requerem aprovao pelo moderador"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "notificao de remoo de %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
msgid "%(realname)s address change notification"
msgstr "notificao de alterao de endereo de %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "as inscries de %(name)s requerem aprovao pelo administrador."
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "ltima notificao de auto-resposta de hoje"
@@ -9359,7 +9368,8 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
+#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9372,29 +9382,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9449,47 +9473,56 @@ msgstr ""
"Voc deve usar no mnimo as opes -n e -d. A maioria dos arquivos\n"
"pode ser '-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "J um membro: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Endereo de email incorreto/invlido: linha em branco"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Endereo de email incorreto/invlido: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Endereo hostil (caracteres ilegais): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Inscrito: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Inscrito: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argumento incorreto para -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argumento incorreto para -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"No possvel ler membros normais e digest a partir do dispositivo de "
"entrada padro."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Lista inexistente: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ro/LC_MESSAGES/mailman.po b/messages/ro/LC_MESSAGES/mailman.po
index 467112ef..73b9b154 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -19,157 +19,157 @@ msgstr ""
"Generated-By: pygettext.py 1.4\n"
"X-Generator: KBabel 1.9.1\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "mărimea nu este disponibilă"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i octeţi "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Fără subiect"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " la "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Mesajul anterior:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Mesajul următor:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "thread"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "subiect"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "data"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Nu sunt arhive în acest moment </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Text%(sz)s comprimat%(sz)s (gzip)"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "pregătesc arhivele\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Aprilie"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februarie"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Ianuarie"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Martie"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "August"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Iulie"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Iunie"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mai"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Decembrie"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Noiembrie"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Octombrie"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Septembrie"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "I"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "IV"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "II"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "III"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "Trimestrul %(ord)s, %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Săptămâna ce începe Luni, %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Calculez indexul firului de discuţie (threaded index)\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Actualizez codul HTML pentru articolul %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "lipseşte fişierul %(filename)s al articolului!"
@@ -233,7 +233,7 @@ msgstr ""
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(fără subiect)"
@@ -251,7 +251,7 @@ msgid "Administrator"
msgstr "Administrator"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -260,7 +260,7 @@ msgstr "Nu există lista <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -270,7 +270,7 @@ msgstr "Eroare"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -283,7 +283,7 @@ msgid "Authorization failed."
msgstr "Autorizarea a eşuat."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "Sesiuna dumneavoastră a expirat."
@@ -301,7 +301,7 @@ msgstr ""
"mesaje normale), altfel lista dumneavoastră devine practic inutilizabilă."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Atenţie: "
@@ -330,11 +330,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Listele de discuţii de la %(hostname)s - Linkuri administrative"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Bun venit!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -386,16 +386,16 @@ msgstr "pagina de informaţii generale a listei"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Trimiteţi întrebările şi comentariile la "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista de discuţii"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Descriere"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[nu are descriere]"
@@ -554,7 +554,7 @@ msgstr "Numele topicii:"
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Descriere:"
@@ -714,7 +714,7 @@ msgid "nodupes"
msgstr "fără dubluri"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "rezumat"
@@ -746,7 +746,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "eu nu"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "fără mail"
@@ -885,7 +885,7 @@ msgstr "Abonez acum aceşti utilizatori sau doar îi invit?"
msgid "Invite"
msgstr "Invită"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Abonează"
@@ -1113,7 +1113,7 @@ msgstr "Adresă de email greşită/invalidă"
msgid "Hostile address (illegal characters)"
msgstr "Adresă ostilă (caractere ilegale)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Adresă blocată cu expresia %(pattern)s"
@@ -1800,8 +1800,8 @@ msgstr ""
" <sau apăsaţi <em>Cancel and discard</em> pentru a anula această\n"
" cerere."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Dezabonare"
@@ -2480,11 +2480,11 @@ msgstr "Codul HTML este neschimbat."
msgid "HTML successfully updated."
msgstr "Codul HTML a fost actualizat cu succes."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Listele de discuţii de la %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2492,7 +2492,7 @@ msgstr ""
"<p>Nu sunt disponibile liste de discuţii\n"
"%(mailmanlink)s publice la %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2507,11 +2507,11 @@ msgstr ""
" pentru a vă abona/dezabona, sau pentru a vă modifica\n"
" opţiunile personale de abonament."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "dreapta"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2523,11 +2523,11 @@ msgstr ""
" al listei adăugat.\n"
" <p>Administratorii listei, puteţi vizita "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "pagina generală de administrare a listei"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2536,11 +2536,11 @@ msgstr ""
" <p>Dacă aveţi probleme la folosirea listelor, vă rugăm să "
"contactaţi "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Opţiuni de editare"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Afişează această pagină în"
@@ -2562,17 +2562,17 @@ msgstr "Nu aţi introdus nici o adresă"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Adresă de email ilegală: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Nu există un astfel de membru: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "A fost trimis un mesaj de confirmare."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2581,7 +2581,7 @@ msgstr ""
"Cererea dumneavoastră de dezabonare\n"
"a fost înaintată administratorului listei pentru aprobare."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2591,30 +2591,30 @@ msgstr ""
" un mesaj de reamintire a parolei v-a fost trimis "
"prin email."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Autentificarea a eşuat."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Un mesaj de reamintire a parolei v-a fost trimis prin email."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Abonamentele pentru %(safeuser)s la %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2622,22 +2622,22 @@ msgstr ""
"Apăsaţi pe un link pentru a vizita pagina de opţiuni personale\n"
" a listei alese."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresele nu se potrivesc!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Folosiţi deja această adresă de email"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2650,31 +2650,31 @@ msgstr ""
"a adresei. Până la confirmare, toate celelalte liste de discuţii conţinând\n"
"adresa %(safeuser)s vor fi modificate. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Noua adresă este deja abonată: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adresele nu pot fi nule"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Un mesaj de confirmare a fost trimis la %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Adresă de email eronată"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Adresă de email ilegală"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s este deja abonată pe listă."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2684,11 +2684,11 @@ msgstr ""
" Dacă credeţi că această restricţie este eronată, vă rugăm să\n"
" contactaţi proprietarii listei la %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Numele abonatului a fost modificat cu succes. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2696,15 +2696,15 @@ msgstr ""
"Administratorul listei nu are voie să schimbe\n"
" parola pentru un utilizator."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Parolele nu pot fi nule"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Parolele nu se potrivesc!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2714,12 +2714,12 @@ msgstr ""
" parola pentru celelalte abonamente ale utilizatorului. Totuşi,\n"
" parola pentru această listă a fost schimbată\n"
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Parola a fost modificată cu succes."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2729,11 +2729,11 @@ msgstr ""
" prin bifarea căsuţei de sub butonul <em>Dezabonare</em>.\n"
" Nu aţi fost scos de pe listă!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Rezultatele dezabonării"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2744,7 +2744,7 @@ msgstr ""
" înaintată moderatorilor listei pentru aprobare. Veţi primi\n"
" o notificare de îndată ce aceştia vor lua o decizie."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2761,7 +2761,7 @@ msgstr ""
" vă rugăm să contactaţi proprietarii listei la adresa "
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2769,7 +2769,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2781,7 +2781,7 @@ msgstr ""
" de livrare nu a fost setată. Oricum, celelalte preferinţe\n"
" au fost setate cu succes."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2793,63 +2793,63 @@ msgstr ""
"de livrare nu a fost salvată. Totuşi,\n"
" celelalte opţiuni v-au fost setate cu succes."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Aţi setat cu succes opţiunile personale."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "S-ar putea să primiţi un ultim rezumat."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Da, sunt sigur că doresc să mă dezabonez</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Modifică-mi parola"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Afişează-mi celelalte abonamente"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Trimite-mi parola"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "parola"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Ieşire"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Salvează modificările"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "zile"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "zi"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Modifică-mi adresa şi numele"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Nu sunt topici definite</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2859,20 +2859,20 @@ msgstr ""
"Sunteţi abonat(ă) la această listă cu adresa\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Lista de discuţii %(realname)s: pagina de acces la opţiunile personale"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "adresa de email şi "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr ""
"Lista de discuţii %(realname)s: opţiunile personale pentru %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2900,19 +2900,19 @@ msgstr ""
"să aveţi activate cookie-urile în browser, altfel nici o modificare nu va fi "
"aplicată."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Adresa de email:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Parola:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Autentificare"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2928,11 +2928,11 @@ msgstr ""
"de confirmare\n"
" primit). "
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Mesaj de reamintire a parolei"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2940,27 +2940,27 @@ msgstr ""
"Apăsând pe butonul <em>Reamintire</em>,\n"
" parola vă va fi trimisă prin email."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Reamintire"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<missing>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Topica cerută nu este validă: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Detalii ale filtrului de topică"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Nume:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Model (ca şi regexp):"
@@ -4998,11 +4998,11 @@ msgstr "Nu au fost ediţii de trimis."
msgid "Invalid value for variable: %(property)s"
msgstr "Valoare invalidă pentru parametrul: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Adresă de email eronată pentru opţiunea %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5017,7 +5017,7 @@ msgstr ""
"<p>Este posibil ca lista dumneavoastră să funcţioneze defectuos până la "
"remedierea problemei."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5990,7 +5990,17 @@ msgstr ""
" Acesta trebuie să difere de precedentul nume\n"
" doar prin folosirea majusculelor."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"atributul <strong>real_name</strong> nu a fost modificat!\n"
+" Acesta trebuie să difere de precedentul nume\n"
+" doar prin folosirea majusculelor."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8332,39 +8342,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Mesaj respins prin activarea unei reguli de filtrare"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Rezumat %(realname)s, Vol %(volume)d, Nr. %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "introducere rezumat"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Prefaţă la rezumat"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Topicile de azi: \n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Topicile de azi: (%(msgcount)d mesaje)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Mesaj ignorat de filtrul de conţinut]s"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "text de încheiere al ediţiei"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Textul de încheiere al ediţiei"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Sfârşitul "
@@ -8515,36 +8525,36 @@ msgstr ""
"Este necesară confirmarea dumneavoastră pentru părăsirea listei de discuţii "
"%(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " de %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "abonamentele la %(realname)s necesită aprobarea moderatorului"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "notificare de abonare la %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "părăsirea listei necesită aprobarea moderatorului"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "notificare de părăsire a listei %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "notificare de părăsire a listei %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "abonarea la %(name)s necesită aprobarea administratorului"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Ultima notificare de răspuns automat de azi"
@@ -8730,7 +8740,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8744,29 +8754,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8800,47 +8824,56 @@ msgstr ""
"\n"
" --welcome-msg=<y|n>\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Este deja membru: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Adresă eronată/invalidă: rând gol"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Adresă eronată/invalidă: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Adresă ostilă (caractere ilegale): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "A fost abonat: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "A fost abonat: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Argument eronat pentru -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Argument eronat pentru -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Nu pot citi nici membrii abonaţi normal şi nici membrii abonaţi la rezumatul "
"zilnic din datele standard de intrare."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Nu ecistă o astfel de listă: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/ru/LC_MESSAGES/mailman.po b/messages/ru/LC_MESSAGES/mailman.po
index bad82882..928c1dfa 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -20,158 +20,158 @@ msgstr ""
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Poedit 2.0.6\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "размер отсутствует"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i байт(ов)"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Без темы"
# MSS: хммм?
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " на "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
msgid "Previous message (by thread):"
msgstr "Предыдущее сообщение (в дискуссии):"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
msgid "Next message (by thread):"
msgstr "Следующее сообщение (в дискуссии):"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "по дискуссиям"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "по темам"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "по автору"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "по дате"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>В настоящее время архивы отсутствуют.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "текст, сжатый программой gzip, %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "текст %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "определяется том архива\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Апрель"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Февраль"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Январь"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Март"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Август"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Июль"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Июнь"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Май"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Декабрь"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Ноябрь"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Октябрь"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Сентябрь"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Первый"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Четвертый"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Второй"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Третий"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s квартал %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
# MSS: здесь месяц не склоняется... Что есть плохо. Варианты?
# fattie: а нельзя поправить код?
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Неделя, начинающаяся с понедельника %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Формируется индекс по дискуссиям\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Обновляется HTML-представление статьи %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "отсутствует файл статьи %(filename)s!"
@@ -235,7 +235,7 @@ msgstr " Последнее сообщение об ошибке, получен
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(без темы)"
@@ -253,7 +253,7 @@ msgid "Administrator"
msgstr "администратора"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -262,7 +262,7 @@ msgstr "Список рассылки <em>%(safelistname)s</em> не сущес
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -272,7 +272,7 @@ msgstr "Ошибка"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -285,7 +285,7 @@ msgid "Authorization failed."
msgstr "Ошибка доступа."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr "Форма устарела. (требуется проверка подлинности)"
@@ -303,7 +303,7 @@ msgstr ""
" В таком состоянии этот список рассылки использовать нельзя. "
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Предупреждение: "
@@ -332,11 +332,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Списки рассылки на %(hostname)s -- интерфейс администратора"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Добро пожаловать!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -393,16 +393,16 @@ msgstr "странице с краткой информацией о списк
msgid "<p>(Send questions and comments to "
msgstr "<p>(Отправляйте вопросы и комментарии по адресу "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Список рассылки"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Описание"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[описание отсутствует]"
@@ -565,7 +565,7 @@ msgstr "Название раздела:"
msgid "Regexp:"
msgstr "Регулярные выражения:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Описание:"
@@ -730,7 +730,7 @@ msgid "nodupes"
msgstr "без копий"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "дайджест"
@@ -762,7 +762,7 @@ msgstr "О"
msgid "notmetoo"
msgstr "без копий<br>своих сообщений"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "без доставки"
@@ -899,7 +899,7 @@ msgstr "Подписать этих пользователей или пригл
msgid "Invite"
msgstr "Пригласить"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Подписать"
@@ -1130,7 +1130,7 @@ msgstr "Недопустимый электронный адрес"
msgid "Hostile address (illegal characters)"
msgstr "Ошибочный адрес (встретились недопустимые символы)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Заблокированный адрес (подходит под шаблон %(pattern)s)"
@@ -1817,8 +1817,8 @@ msgstr ""
"<p>Чтобы отменить запрос на удаление своей подписки, нажмите <em>Отказаться "
"и удалить запрос</em>."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Удалить подписку"
@@ -2468,11 +2468,11 @@ msgstr "Страница не была изменена."
msgid "HTML successfully updated."
msgstr "HTML-код обновлен."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Списки рассылки %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2480,7 +2480,7 @@ msgstr ""
"<p>Открыто анонсированных списков рассылки %(mailmanlink)s\n"
"на %(hostname)s сейчас нет."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2495,11 +2495,11 @@ msgstr ""
"просто щелкните по имени нужного списка рассылки."
# MSS: очень плохой перевод. а вдруг будет еще слово right? может, нужно код поменять?
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "существующего"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2512,11 +2512,11 @@ msgstr ""
" <p>Администраторы могут воспользоваться "
# MSS: предыдущий вариант "обзорной страницей администратора". нужно "объединить"
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "списком административных страниц"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2525,13 +2525,13 @@ msgstr ""
"рассылки.\n"
" <p>Если у вас возникли вопросы, вы их можете задать "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Изменить параметры подписки"
# MSS: важным является оставить английский текст для тех пользователей, которые не понимают
# по-русски
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Язык страницы (view this page in):"
@@ -2554,18 +2554,18 @@ msgid "Illegal Email Address: %(safeuser)s"
msgstr "Неверный адрес: %(safeuser)s"
# MSS: было "Подписчик отсутствует: %(safeuser)s."... надо думать.. слушать...
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Такого пользователя не существует: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
msgid "If you are a list member, a confirmation email has been sent."
msgstr ""
"Если Вы подписчик списка рассылки, Вам было отправлено сообщение с кодом "
"подтверждения."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
@@ -2573,7 +2573,7 @@ msgstr ""
"Если Вы подписчик списка рассылки, Ваш запрос на удаление подписки\n"
"был отправлен модератору для обработки."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
@@ -2581,15 +2581,15 @@ msgstr ""
"Если Вы подписчик списка рассылки,\n"
" Вам было отправлено сообщение с Вашим паролем."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Ошибка аутентификации."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Вам было отправлено сообщение с вашим паролем."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2597,16 +2597,16 @@ msgstr ""
"Администратор списка рассылки не может видеть\n"
"другие подписки этого пользователя."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Учтите: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Подписки пользователя %(safeuser)s на %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2614,7 +2614,7 @@ msgstr ""
"Щелкните на ссылке для того, чтобы перейти к параметрам своей подписки на "
"указанный список рассылки."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2624,15 +2624,15 @@ msgstr ""
"или адрес этого пользователя в других его подписках. Однако,\n"
"подписка для этого списка рассылки была изменена."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Указанные адреса не совпадают!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Вы уже пользуетесь тем адресом электронной почты"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2645,32 +2645,32 @@ msgstr ""
"всех списках рассылки на этом сайте. Поэтому после получения подтверждения\n"
"во всех остальных списках ваш адрес будет изменен."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Новый адрес уже есть в списке рассылки: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Адрес не может быть пустым"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr ""
"Сообщение с кодом подтверждения было отправлено по адресу %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Указан некорректный адрес"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Указан недопустимый адрес"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s уже содержится в списке рассылки."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2680,11 +2680,11 @@ msgstr ""
"Если Вы считаете это ошибкой, обратитесь к администратору\n"
"по адресу %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Имя подписчика изменено. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
@@ -2692,15 +2692,15 @@ msgstr ""
"Администратор списка рассылки не может изменить\n"
"пароль пользователя."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Пароль не может быть пустым"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Пароли не совпадают!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2710,13 +2710,13 @@ msgstr ""
"пароль этого пользователя в других подписках. Однако,\n"
"пароль пользователя для этого списка рассылки был изменен."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Пароль был изменен."
# MSS: "отписаны" -- жаргонизм
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2726,11 +2726,11 @@ msgstr ""
"флажком параметр под кнопкой <em>Удалить подписку</em>. Сейчас вы еще не "
"отписаны!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Удаление подписки"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2741,7 +2741,7 @@ msgstr ""
"списка рассылки для обработки. После принятия модератором какого-либо\n"
"решения вы получите извещение."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2755,7 +2755,7 @@ msgstr ""
"еще остались какие-либо вопросы об удалении подписки, обратитесь\n"
"к владельцам списка по адресу %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2766,7 +2766,7 @@ msgstr ""
"параметры этого пользователя в других его подписках. Однако,\n"
"параметры для этого списка рассылки были изменены."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2777,7 +2777,7 @@ msgstr ""
"значение соответствующего параметра в ваших настройках не сохранено.\n"
"Значения других параметров сохранены."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2790,65 +2790,65 @@ msgstr ""
"сохранено.\n"
"Значения других параметров сохранены"
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Параметры были изменены."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Возможно, вы получите еще один дайджест."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Да, я действительно хочу удалить подписку</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Изменить пароль"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Список моих подписок"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Пришлите мне мой пароль"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "пароль"
# fattie: should check shis out
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Выйти"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Внести изменения"
# MSS: this must be changed in the code :((
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "дн."
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "день"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Изменить мои адрес и имя"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Разделы не определены</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2858,20 +2858,20 @@ msgstr ""
"Вы подписаны на этот список с адресом (регистр букв сохранен)\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Список рассылки %(realname)s: вход в систему"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "адрес электронной почты и "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr ""
"Список рассылки %(realname)s: пользовательские настройки для %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2899,19 +2899,19 @@ msgstr ""
"<p><strong><em>Внимание:</em></strong> в вашем браузере должно быть\n"
"разрешено сохранение cookies, иначе никакие настройки сохранены не будут."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Адрес эл. почты:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Пароль:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Войти"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2924,11 +2924,11 @@ msgstr ""
"на которую, вы завершите процесс удаления своей учетной записи. Кроме того,\n"
"завершить удаление можно и по электронной почте, см. инструкции в сообщении."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Напоминание пароля"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2936,27 +2936,27 @@ msgstr ""
"После нажатия на кнопку <em>Напомнить</em> ваш пароль\n"
"будет отправлен вам по электронной почте."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Напомнить"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<отсутствует>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Запрошенный раздел некорректен: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Параметры фильтрации сообщений по разделам"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Название:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Шаблон (рег. выражение):"
@@ -5127,11 +5127,11 @@ msgstr "Пустой дайджест отправлен не будет."
msgid "Invalid value for variable: %(property)s"
msgstr "Недопустимое значение переменной: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Недопустимый адрес в параметре %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5145,7 +5145,7 @@ msgstr ""
"<p>Пока вы не исправите эту проблему, ваш список рассылки может работать\n"
"некорректно."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6211,7 +6211,16 @@ msgstr ""
"Атрибут <b>admin_member_chunksize</b> не был изменен!\n"
"Он должен быть целым положительным числом."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Атрибут <b>admin_member_chunksize</b> не был изменен!\n"
+"Он должен быть целым положительным числом."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8795,40 +8804,40 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Сообщение отклонено фильтром"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr ""
"Дайджест списка рассылки %(realname)s; том %(volume)d, выпуск %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "верхнего колонтитула дайджеста"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Верхний колонтитул дайджеста"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "В этом номере:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "В этом номере (сообщений: %(msgcount)d)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Сообщение удалено фильтром содержимого]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "нижнего колонтитула дайджеста"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Нижний колонтитул дайджеста"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Конец "
@@ -8984,35 +8993,35 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr ""
"Подтвердите запрос на удаление вашей подписки на список рассылки %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " с адреса %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "подписка на список %(realname)s требует подтверждения модератора"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "уведомление о подписке на список %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "удаление подписки требует подтверждения модератора"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "уведомление об удалении подписки на список %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
msgid "%(realname)s address change notification"
msgstr "уведомление об изменении адреса подписчика %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "подписка на %(name)s требует подтверждения администратора"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Последнее автоматическое уведомление на сегодня"
@@ -9200,7 +9209,8 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
+#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9213,29 +9223,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9294,48 +9318,57 @@ msgstr ""
"и -d.\n"
"Только один из этих файлов может быть задан как \"-\".\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Уже является подписчиком: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Некорректный электронный адрес: пустая строка"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Неверный/недопустимый адрес: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Недопустимый адрес (содержит запрещенные символы): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Подписан: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Подписан: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Недопустимый аргумент для -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Недопустимый аргумент для -a/--admin-notify: %(arg)s"
# MSS: что-то чуть лучшее надо. :(
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Запрещено читать список адресов для обоих типов подписки из стандартного "
"ввода."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Нет такого списка рассылки: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/sk/LC_MESSAGES/mailman.po b/messages/sk/LC_MESSAGES/mailman.po
index 08f97ade..0b657bb0 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\n"
"PO-Revision-Date: 2007-11-26 12:21+0100\n"
"Last-Translator: Martin Matuška <martin@matuska.org>\n"
"Language-Team: Slovak\n"
@@ -18,157 +18,157 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "veľkosť neznáma"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bajtov "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Bez predmetu"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " na "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Predchádzajúci príspevok:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Nasledujúci príspevok:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "vlákna"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "predmetu"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "autora"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "dátumu"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Momentálne neexistujú žiadne archívy. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip-komprimovaný text %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "vytváram archív príspevkov\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Apríl"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Február"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Január"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marec"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "August"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Júl"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Jún"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Máj"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "December"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Október"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Prvý"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Štvrtý"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Druhý"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tretí"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s štvrťrok %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Týždeň začínajúci pondelkom %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Vytváram index pre príspevky združené do vlákien\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Aktualizujem HTML stránky pre príspevok %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "súbor %(filename)s obsahujúci príspevok nebol nájdený!"
@@ -232,7 +232,7 @@ msgstr ""
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(bez predmetu)"
@@ -250,7 +250,7 @@ msgid "Administrator"
msgstr "Správca"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -259,7 +259,7 @@ msgstr "Neznáma konferencia <em>%(safelistname)s</em>."
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -269,7 +269,7 @@ msgstr "Chyba"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -282,7 +282,7 @@ msgid "Authorization failed."
msgstr "Autorizácia zlyhala."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -301,7 +301,7 @@ msgstr ""
" doručovania pošty do konferencie."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Pozor: "
@@ -330,11 +330,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Konferencie na serveri %(hostname)s - Správcovské linky"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Vitajte!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -386,16 +386,16 @@ msgstr "informačnej stránke konferencie"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Dotazy a pripomienky zasielajte na "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Konferencia"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Popis"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[žiaden popis nie je k dispozícii]"
@@ -550,7 +550,7 @@ msgstr "Názov témy:"
msgid "Regexp:"
msgstr "Regulárny výraz (regexp):"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Popis:"
@@ -710,7 +710,7 @@ msgid "nodupes"
msgstr "bez duplikátov"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "súhrnná správa"
@@ -742,7 +742,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "bez kópie"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nomail"
@@ -872,7 +872,7 @@ msgstr "Chcete týchto účastníkov prihlásiť ihneď alebo iba pozvať k úč
msgid "Invite"
msgstr "Pozvať"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Prihlásiť"
@@ -1095,7 +1095,7 @@ msgstr "Neplatná e-mailová adresa"
msgid "Hostile address (illegal characters)"
msgstr "Neplatná adresa (obsahuje nepovolené znaky)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Zakázaná adresa (vyhovuje vzoru %(pattern)s)"
@@ -1765,8 +1765,8 @@ msgstr ""
"\n"
" <p>Kliknutím na <em>Zrušiť</em> odhlásenie nebude uskutočnené."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Odhlásiť"
@@ -2424,11 +2424,11 @@ msgstr "Stránka nezmenená."
msgid "HTML successfully updated."
msgstr "HTML šablóny boly úspešne aktualizované."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Konferencie na serveri %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2436,7 +2436,7 @@ msgstr ""
"<p>Momentálne tu nie sú žiadne verejne prístupné konferencie\n"
" %(mailmanlink)s na serveri %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2451,11 +2451,11 @@ msgstr ""
"o konferencii, bodete sa do nej môcť prihlásiť alebo zmeniť osobné\n"
"nastavenia pre túto konferenciu"
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "Vpravo"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2469,11 +2469,11 @@ msgstr ""
" názov konferencie.\n"
" <p>Správcovia konferencie môžu použiť "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "správcovské stránky"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2481,11 +2481,11 @@ msgstr ""
" pre zobrazenie správcovského rozhrania vašej konferencie.\n"
" <p>Pokiaľ máte problémy s používaním konferencie, kontaktujte "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Úprava vlastností"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Zobraziť túto stránku po"
@@ -2507,17 +2507,17 @@ msgstr "Nebola uvedená adresa"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Neplatná e-mailová adresa: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Neznámy účastník: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Správa s potvrdením bola odoslaná."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2526,22 +2526,22 @@ msgstr ""
"Vaša žiadosť o odhlásenie bola preposlaná\n"
" správcovi konferencie na spracovanie."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Správa s vašim heslom vám bola zaslaná."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Autentifikácia zlyhala."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Správa s vašim heslom vám bola zaslaná."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2549,24 +2549,24 @@ msgstr ""
"Správca konferencie nemôže vidieť ostatné\n"
" konferencie, do ktorých je účastník prihlásený."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Poznámka: "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr ""
"Zoznam konferencií, v ktorých je prihlásený používateľ %(safeuser)s na "
"serveri %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "Pre zobrazenie nastavení konferencie kliknite na jej názov."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2576,15 +2576,15 @@ msgstr ""
" tohto účastníka v iných konfernciách, v ktorých je prihlásený.\n"
" Údaje pre túto konferenciu boli zmenené."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresy nesúhlasia!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Túto e-mailoú adresu už používate"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2597,31 +2597,31 @@ msgstr ""
"budú po potvrdení zmenené adresy v ostatných konferenciách, kde je\n"
"účastník %(safeuser)s prihlásený."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Nová adresa je v konferenci už prihlásená: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adresy nemôžu zostať prázdne"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Správa s potvrdením bola zaslaná na adresu %(newaddr)s"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Chybná e-mailová adresa"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Neplatná emailová adresa"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s je už prihlásený v konferencii."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2632,11 +2632,11 @@ msgstr ""
" že je to neprávom, kontaktujte správcu konferencie na adrese "
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Meno bolo úspešne zmenené."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2645,15 +2645,15 @@ msgstr ""
"Správca konferencie nemôže vidieť ostatné\n"
" konferencie, do ktorých je účastník prihlásený."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Heslá nemôžu byť prázdné."
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Heslá nesúhlasia!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2663,12 +2663,12 @@ msgstr ""
" v iných konferenciách. Heslo pre túto konferenciu\n"
" bolo zmenené."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Heslo bolo úspešne zmenené."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2678,11 +2678,11 @@ msgstr ""
" Zaškrtnite políčko pod tlačidlom <em>Odhlásiť</em>.\n"
" Momentálne ešte nie ste odhlásený!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Výsledky odhlásenia"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2693,7 +2693,7 @@ msgstr ""
"schválenie\n"
" O výsledku budete informovaný."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2709,7 +2709,7 @@ msgstr ""
" odhlásenia kontaktujte správcu konferencie na adrese:\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2720,7 +2720,7 @@ msgstr ""
" v ostatných konferenciách. Nastavenia pre túto\n"
" konferenciu boli zmenené."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2732,7 +2732,7 @@ msgstr ""
" doručovania nebolo zmenené.\n"
" Zmeny ostatných nastavení boli akceptované."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2743,63 +2743,63 @@ msgstr ""
" takže nastavenie formy doručovania nebolo zmenené. Zmeny\n"
" ostatných nastavení boli akceptované."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Vaše nastavenia boli úspešne zmenené."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Ešte vám môže byť doručený jedna posledná súhrnná správa."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Áno, naozaj sa chcem odhlásiť</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Zmeniť heslo"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Zobraziť moje ďalšie konferencie."
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Zaslať heslo e-mailom"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "heslo"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Odhlásiť"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Uskutočniť zmeny"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dni"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "deň"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Zmeniť adresu a meno"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Žiadne témy nie sú definované</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2811,19 +2811,19 @@ msgstr ""
"písmen\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Konferencia %(realname)s: prihlásenie účastníka pre úpravu nastavení"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-mailová adresa a "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Konferencia %(realname)s: používateľské nastavenia pre %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2851,19 +2851,19 @@ msgstr ""
" nebude uložená.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-mailová adresa:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Heslo:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Prihlásiť"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2876,38 +2876,38 @@ msgstr ""
" sa definitívne odhlásite. Alternatívne sa môžete odhlásiť aj pomocou\n"
" e-mailu (návod nájdete v potvrdzujúcom e-maili)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Pripomienka hesla"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr ""
"Kliknutím na tlačidlo <em>Poslať heslo</em> vám bude zaslané vaše heslo."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Poslať heslo"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<chýba>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Požadovaná téma neexistuje: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Parametre filtra tém"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Meno:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Pravidlo (regulárny výraz):"
@@ -5045,11 +5045,11 @@ msgstr "Žiadne súhrnné správy nečekajú na odoslanie."
msgid "Invalid value for variable: %(property)s"
msgstr "Chybná hodnota premennej: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Chybná e-mailová adresa pre parameter %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5064,7 +5064,7 @@ msgstr ""
" <p>Pokiaľ nebude problém vyriešený, konferencia nemusí "
"fungovať."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6038,7 +6038,16 @@ msgstr ""
"<b>počet účastníkov na stránku</b> nebol zmenený!\n"
" Musí to byť kladné celé číslo > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>počet účastníkov na stránku</b> nebol zmenený!\n"
+" Musí to byť kladné celé číslo > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8480,39 +8489,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Správa bola zamietnutá filtrovacím pravidlom"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Súhrnná správa, vydanie %(volume)d, číslo %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "hlavička súhrnnej správy"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Hlavička súhrnnej správy"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dnešné témy:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dnešné témy (%(msgcount)d správ):"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Správa bola zahodené filtrom obsahu]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "päta súhrnnej správy"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Päta súhrnnej správy"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Koniec: "
@@ -8661,36 +8670,36 @@ msgstr "Pre prihlásenie do konferencie %(listname)s je potrebné overenie"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Pro odhlásenie z konferencie %(listname)s je potrebné overenie."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr "od %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "prihlásenia do konferencie %(realname)s vyžadjú súhlas moderátora"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s upozornenie o prihlásení."
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "odhlásenie z konferencie vyžaduje súhlas moderátora"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s upozornenie o odhlásení"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s upozornenie o odhlásení"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "prihlásenie do konferencie %(name)s vyžaduje súhlas moderátora"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Posledná automatická odpoveď pre dnešok"
@@ -8878,7 +8887,7 @@ msgid ""
msgstr ""
"%(wday)s, %(day)2i. %(mon)s %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8892,29 +8901,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8970,47 +8993,56 @@ msgstr ""
"Musíte zadať aspoň jednu z možností -r alebo -d. Najviac jeden zo súborov\n"
"môže byť „-“.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "%(member)s už je účastníkom."
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Neplatná e-mailová adresa: prázdny riadok"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Neplatná e-mailová adresa: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Neplatná adresa (obsahuje nepovolené znaky): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Prihlásený: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Prihlásený: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Chybný parameter v -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Chybný parameter v -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Nemôžem naraz načítať zo štandardného vstupu (stdin) bežných účastníkov\n"
"a účastníkov prijímajúcich súhrnné správy"
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Neznáma konferencia: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/sl/LC_MESSAGES/mailman.po b/messages/sl/LC_MESSAGES/mailman.po
index b4cf9507..e5ce072b 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -22,171 +22,171 @@ msgstr ""
"X-Generator: KBabel 1.0.1\n"
# Mailman/Handlers/Decorate.py:49
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "velikost ni na voljo"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i bajtov"
# Mailman/Archiver/pipermail.py:166 Mailman/Archiver/pipermail.py:167
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Brez zadeve"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " na "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Prejnje sporoilo:"
# Mailman/Gui/Archive.py:31
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Naslednje sporoilo:"
# Mailman/Archiver/pipermail.py:448
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "tema"
# Mailman/Handlers/CalcRecips.py:37 Mailman/Handlers/CookHeaders.py:55
# Mailman/Handlers/Hold.py:240 Mailman/Handlers/Hold.py:274
# Mailman/Handlers/ToDigest.py:213 Mailman/ListAdmin.py:202
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "zadeva"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "avtor"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "datum"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Trenutno arhiva ni na voljo. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "%(sz)s besedila stisnjeno z gzip"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Besedilo %(sz)s"
# Mailman/Cgi/private.py:62
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "oblikovanje arhiva prispevkov\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "April"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Januar"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Marec"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Avgust"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Julij"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Junij"
# Mailman/Cgi/options.py:563
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Maj"
# Mailman/HTMLFormatter.py:264
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "December"
# Mailman/HTMLFormatter.py:264
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "November"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktober"
# Mailman/HTMLFormatter.py:264
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "September"
# Mailman/Cgi/admin.py:266 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:147
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Prva"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "etrta"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Druga"
# Mailman/Cgi/admin.py:816
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Tretja"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s etrtina %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Teden %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Izdelava kazala po temah\n"
# Mailman/Archiver/pipermail.py:414
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Posodobitev HTML za prispevek %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "Manjka datoteka prispevka %(filename)s!"
@@ -259,7 +259,7 @@ msgstr " Zadnja zavrnitev s tega naslova je z dne %(date)s"
# Mailman/Handlers/ToDigest.py:213 Mailman/ListAdmin.py:202
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(brez zadeve)"
@@ -285,7 +285,7 @@ msgstr "Skrbnik"
# Mailman/Cgi/rmlist.py:60 Mailman/Cgi/roster.py:55
# Mailman/Cgi/subscribe.py:57
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -296,7 +296,7 @@ msgstr "Seznam <em>%(safelistname)s</em> ne obstaja."
# Mailman/Cgi/subscribe.py:47 Mailman/Cgi/subscribe.py:56
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -307,7 +307,7 @@ msgstr "Napaka"
# Mailman/Cgi/options.py:52
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -322,7 +322,7 @@ msgid "Authorization failed."
msgstr "Avtorizacija ni uspela."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -343,7 +343,7 @@ msgstr ""
# Mailman/Cgi/admin.py:1337
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Opozorilo: "
@@ -375,12 +375,12 @@ msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s potni seznami - Administrativne povezave"
# Mailman/Cgi/admin.py:225 Mailman/Cgi/listinfo.py:97
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Dobrodoli!"
# Mailman/Cgi/admin.py:228 Mailman/Cgi/listinfo.py:100
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -439,19 +439,19 @@ msgid "<p>(Send questions and comments to "
msgstr "<p>(Vpraanja in pripombe poljite na naslov "
# Mailman/Cgi/admin.py:266 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:147
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Seznam"
# Mailman/Cgi/admin.py:267 Mailman/Cgi/admin.py:508
# Mailman/Cgi/listinfo.py:133
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Opis"
# Mailman/Cgi/admin.py:273 Mailman/Cgi/listinfo.py:139 bin/list_lists:103
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[opisa ni na voljo]"
@@ -634,7 +634,7 @@ msgid "Regexp:"
msgstr "Regularni izraz:"
# Mailman/Cgi/admin.py:652 Mailman/Cgi/options.py:799
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Opis:"
@@ -816,7 +816,7 @@ msgstr "nodupes"
# Mailman/Cgi/admin.py:818
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "digest"
@@ -852,7 +852,7 @@ msgid "notmetoo"
msgstr "not metoo"
# Mailman/Cgi/admin.py:816
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "nomail"
@@ -992,7 +992,7 @@ msgid "Invite"
msgstr "Povabi"
# Mailman/Cgi/confirm.py:220 Mailman/Cgi/listinfo.py:171
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Prijavi"
@@ -1269,7 +1269,7 @@ msgstr "Neveljaven e-potni naslov"
msgid "Hostile address (illegal characters)"
msgstr "Nedopusten naslov (nedovoljeni znaki)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -2035,8 +2035,8 @@ msgstr ""
# Mailman/Cgi/confirm.py:388 Mailman/Cgi/options.py:530
# Mailman/Cgi/options.py:665 Mailman/Cgi/options.py:675
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Odjavi"
@@ -2796,12 +2796,12 @@ msgid "HTML successfully updated."
msgstr "HTML uspeno posodobljen."
# Mailman/Cgi/listinfo.py:69
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Potni seznami na %(hostname)s"
# Mailman/Cgi/listinfo.py:103
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2810,7 +2810,7 @@ msgstr ""
" potnih seznamov na %(hostname)s."
# Mailman/Cgi/listinfo.py:107
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2826,12 +2826,12 @@ msgstr ""
" vaega lanstva."
# Mailman/Cgi/listinfo.py:113
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "desno"
# Mailman/Cgi/listinfo.py:116
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2844,11 +2844,11 @@ msgstr ""
" <p>Skrbniki seznama lahko obiete "
# Mailman/Cgi/listinfo.py:121
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "stran s pregledom za skrbnike seznama"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2857,12 +2857,12 @@ msgstr ""
" <p>e imate z dopisnimi seznami kakne teave, se obrnite na "
# Mailman/Cgi/listinfo.py:180
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Uredi monosti"
# Mailman/Cgi/listinfo.py:183 Mailman/Cgi/roster.py:109
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Pokai to stran v"
@@ -2888,18 +2888,18 @@ msgid "Illegal Email Address: %(safeuser)s"
msgstr "Neveljavni e-potni naslov: %(safeuser)s"
# Mailman/Cgi/options.py:93
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "lan ne obstaja: %(safeuser)s."
# Mailman/Cgi/options.py:133
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Potrditveno sporoilo je bilo poslano."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2909,7 +2909,7 @@ msgstr ""
"za obdelavo."
# Mailman/Cgi/options.py:144 Mailman/Cgi/options.py:181
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -2917,33 +2917,33 @@ msgid ""
msgstr "Opomnik z vaim geslom je bil poslan na va naslov."
# Mailman/Cgi/options.py:161
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Avtentikacija ni uspela."
# Mailman/Cgi/options.py:144 Mailman/Cgi/options.py:181
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Opomnik z vaim geslom je bil poslan na va naslov."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
# Mailman/Cgi/options.py:187
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Vsa lanstva uporabnika %(safeuser)s na %(hostname)s"
# Mailman/Cgi/options.py:190
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2951,7 +2951,7 @@ msgstr ""
"Kliknite na povezavo, da odprete stran z monostmi\n"
" za eleni potni seznam."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2959,16 +2959,16 @@ msgid ""
msgstr ""
# Mailman/Cgi/options.py:231
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Naslovi se ne ujemajo!"
# Mailman/Cgi/options.py:236
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Ta e-potni naslov je e uporabljen."
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2982,36 +2982,36 @@ msgstr ""
"naslov %(safeuser)s. "
# Mailman/Cgi/admindb.py:364
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Novi naslov je e uprabljen: %(newaddr)s"
# Mailman/Cgi/options.py:242
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Naslovi ne smejo biti prazni"
# Mailman/Cgi/options.py:258
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Na naslov %(newaddr)s je bilo poslano potrditveno sporoilo. "
# Mailman/Cgi/options.py:267
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Navedli ste neveljaven e-potni naslov"
# Mailman/Cgi/options.py:269
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Navedli ste nedovoljen e-potni naslov"
# Mailman/Cgi/options.py:271
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s je e lan tega seznama."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -3023,12 +3023,12 @@ msgstr ""
"na naslov %(owneraddr)s."
# Mailman/Cgi/options.py:280
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Ime lana je bilo uspeno spremenjeno. "
# Mailman/Cgi/options.py:462
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -3040,17 +3040,17 @@ msgstr ""
"spremenjene."
# Mailman/Cgi/options.py:291
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Gesla ne smejo biti prazna"
# Mailman/Cgi/options.py:296
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Gesli se ne ujemata!"
# Mailman/Cgi/options.py:462
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -3063,13 +3063,13 @@ msgstr ""
"spremenjene."
# Mailman/Cgi/options.py:312
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Geslo je bilo uspeno spremenjeno."
# Mailman/Cgi/options.py:321
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -3080,11 +3080,11 @@ msgstr ""
" e odjavljeni!"
# Mailman/Cgi/options.py:349
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Rezultati odjave"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -3096,7 +3096,7 @@ msgstr ""
" boste po e-poti prejeli obvestilo."
# Mailman/Cgi/options.py:352
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -3111,7 +3111,7 @@ msgstr ""
" odjavi, se obrnite na lastnike seznama na naslov\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -3120,7 +3120,7 @@ msgid ""
msgstr ""
# Mailman/Cgi/options.py:458
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -3132,7 +3132,7 @@ msgstr ""
" nastavljena, ostale monosti pa so uspeno spremenjene."
# Mailman/Cgi/options.py:462
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -3145,77 +3145,77 @@ msgstr ""
"spremenjene."
# Mailman/Cgi/options.py:466
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Uspeno ste nastavili monosti."
# Mailman/Cgi/options.py:469
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Prejeli boste e zadnji izvleek."
# Mailman/Cgi/options.py:532
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Da, resnino se elim odjaviti</em>"
# Mailman/Cgi/options.py:536
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Spremeni moje geslo"
# Mailman/Cgi/options.py:539
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Prikai moje ostale prijave"
# Mailman/Cgi/options.py:545
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Polji sporoilo z mojim geslom"
# Mailman/Cgi/options.py:547
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "geslo"
# Mailman/Cgi/options.py:549
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Odjava"
# Mailman/Cgi/options.py:551
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Polji moje spremembe"
# Mailman/Cgi/options.py:561
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dni"
# Mailman/Cgi/options.py:563
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dan"
# Mailman/Cgi/options.py:564
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
# Mailman/Cgi/options.py:570
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Spremeni moj naslov in ime"
# Mailman/Cgi/options.py:598
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Ni definiranih tem</em>"
# Mailman/Cgi/options.py:606
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -3226,22 +3226,22 @@ msgstr ""
"<em>%(cpuser)s</em>."
# Mailman/Cgi/options.py:619
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Seznam %(realname)s: stran za prijavo v uporabnike monosti"
# Mailman/Cgi/options.py:621
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-potni naslov in "
# Mailman/Cgi/options.py:623
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Seznam %(realname)s: monosti lanstva za uporabnika %(safeuser)s"
# Mailman/Cgi/options.py:636
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -3272,22 +3272,22 @@ msgstr ""
" "
# Mailman/Cgi/options.py:656
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-potni naslov:"
# Mailman/Cgi/confirm.py:203 Mailman/Cgi/options.py:658
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Geslo:"
# Mailman/Cgi/options.py:660
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Prijava"
# Mailman/Cgi/options.py:669
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -3302,12 +3302,12 @@ msgstr ""
" sporoilu)."
# Mailman/Cgi/options.py:679
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Opomnik za geslo"
# Mailman/Cgi/options.py:683
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -3316,32 +3316,32 @@ msgstr ""
" e-poti prejeli sporoilo z vaim geslom."
# Mailman/Cgi/options.py:686
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Opomni"
# Mailman/Cgi/options.py:776
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<missing>"
# Mailman/Cgi/options.py:787
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Zahtevana tema ni veljavna: %(topicname)s"
# Mailman/Cgi/options.py:792
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Podrobnosti tematskega filtra"
# Mailman/Cgi/options.py:795
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Ime:"
# Mailman/Cgi/options.py:797
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Vzorec (kot regexp):"
@@ -5636,11 +5636,11 @@ msgid "Invalid value for variable: %(property)s"
msgstr "Neveljavna vrednost za spremenljivko: %(property)s"
# Mailman/Cgi/admin.py:1169
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Neveljaven e-potni naslov za monost %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5655,7 +5655,7 @@ msgstr ""
" <p>Dokler te teave ne odpravite, va seznam morda\n"
" ne bo deloval pravilno."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6726,7 +6726,18 @@ msgstr ""
" spremenjen! Od imena seznama se lahko razlikuje le\n"
" po velikosti rk."
-#: Mailman/Gui/General.py:570
+# Mailman/Cgi/admin.py:1188
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>real_name</b> atribut ni bil\n"
+" spremenjen! Od imena seznama se lahko razlikuje le\n"
+" po velikosti rk."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -9332,46 +9343,46 @@ msgid "Message rejected by filter rule match"
msgstr ""
# Mailman/Handlers/ToDigest.py:148
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s izvleek, let %(volume)d, tevilka %(issue)d"
# Mailman/Handlers/ToDigest.py:186
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "glava izvleka"
# Mailman/Handlers/ToDigest.py:189
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Glava izvleka"
# Mailman/Handlers/ToDigest.py:202
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dananje teme:\n"
# Mailman/Handlers/ToDigest.py:269
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dananje teme (%(msgcount)d sporoil)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
# Mailman/Handlers/ToDigest.py:295
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "noga izvleka"
# Mailman/Handlers/ToDigest.py:298
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Noga izvleka"
# Mailman/Handlers/ToDigest.py:312
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Konec "
@@ -9546,42 +9557,42 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Niste prijavljeni na potni seznam %(listname)s"
# Mailman/MailList.py:614 Mailman/MailList.py:886
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " od %(remote)s"
# Mailman/MailList.py:649
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "prijave na %(realname)s zahtevajo odobritev moderatorja"
# Mailman/MailList.py:711 bin/add_members:258
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Obvestilo o prijavi na %(realname)s"
# Mailman/Cgi/confirm.py:268
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "odjave zahtevajo odobritev moderatorja"
# Mailman/MailList.py:739
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Obvestilo o odjavi s seznama %(realname)s"
# Mailman/MailList.py:739
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Obvestilo o odjavi s seznama %(realname)s"
# Mailman/MailList.py:860
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "prijave na %(name)s zahtevajo odobritev skrbnika"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Zadnje samodejno oblikovano obvestilo danes"
@@ -9801,7 +9812,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -9815,29 +9826,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9894,55 +9919,65 @@ msgstr ""
"`-'.\n"
# Mailman/Cgi/admin.py:1228
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "e lan: %(member)s"
# Mailman/Cgi/admin.py:1232 Mailman/Cgi/admin.py:1235
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Napaen/neveljaven e-potni naslov: blank line"
# Mailman/Cgi/admin.py:1232 Mailman/Cgi/admin.py:1235
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Napaen/neveljaven e-potni naslov: %(member)s"
# Mailman/Cgi/admin.py:1238
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Nedopusten naslov (nedovoljeni znaki): %(member)s"
# Mailman/Cgi/admin.py:1281
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Prijavljen: %(member)s"
+
+# Mailman/Cgi/admin.py:1281
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Prijavljen: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Neveljaven argument za -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Neveljaven argument za -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Ni mogoe brati uporabnikov z in brez izvleka prek standardnega vhoda."
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
# Mailman/Cgi/admin.py:66 Mailman/Cgi/admindb.py:60 Mailman/Cgi/confirm.py:52
# Mailman/Cgi/edithtml.py:65 Mailman/Cgi/listinfo.py:49
# Mailman/Cgi/options.py:67 Mailman/Cgi/private.py:96
# Mailman/Cgi/rmlist.py:60 Mailman/Cgi/roster.py:55
# Mailman/Cgi/subscribe.py:57
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Seznam ne obstaja: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/sr/LC_MESSAGES/mailman.po b/messages/sr/LC_MESSAGES/mailman.po
index 6a65ca7a..49130fe4 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -13,162 +13,162 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
#, fuzzy
msgid "size not available"
msgstr "није доступно"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i бајтова"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Нема теме"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " на "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Претходна порука:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Следећа порука:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
#, fuzzy
msgid "thread"
msgstr "Стабло"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
#, fuzzy
msgid "subject"
msgstr "нема теме"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "аутор"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
#, fuzzy
msgid "date"
msgstr "нема датума"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>Тренутно нема архива. </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Гзип-ован Текст %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Текст %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "проналажење чланка у архиви\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Aприл"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Фебруар"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Јануар"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Март"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Аугуст"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Јули"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Јун"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Мај"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Децембар"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Новембар"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Октобар"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Септембар"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Први"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Четврти"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Други"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Трећи"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s четвртина %(godine)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Недјеља од понедјељка %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Прорачунавање стабла порука\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
#, fuzzy
msgid "Updating HTML for article %(seq)s"
msgstr "Освјежавање HTML фајла"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
#, fuzzy
msgid "article file %(filename)s is missing!"
msgstr "недостаје фајл са чланком %s!"
@@ -231,7 +231,7 @@ msgstr ""
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(нема теме)"
@@ -249,7 +249,7 @@ msgid "Administrator"
msgstr "Администратор"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -258,7 +258,7 @@ msgstr "Нема листе <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -268,7 +268,7 @@ msgstr "Грешка"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -281,7 +281,7 @@ msgid "Authorization failed."
msgstr "Пријава није успела."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -299,7 +299,7 @@ msgstr ""
"неупотребљива."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Упозорење:"
@@ -328,11 +328,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s листе слања - администраторске везе"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Добро дошли!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -384,16 +384,16 @@ msgstr "почетна страница листе слања"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Шаљите питања и коментаре на "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Листа"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Опис"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[нема описа]"
@@ -551,7 +551,7 @@ msgstr "Назив теме: "
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Опис: "
@@ -711,7 +711,7 @@ msgid "nodupes"
msgstr "без дупл."
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "преглед"
@@ -743,7 +743,7 @@ msgstr "С"
msgid "notmetoo"
msgstr "без повр."
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "без поште"
@@ -868,7 +868,7 @@ msgstr "Да ли треба дате кориснике сада уписати
msgid "Invite"
msgstr "Позивање"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Упис"
@@ -1097,7 +1097,7 @@ msgstr "Погрешна/неправилна е-адреса"
msgid "Hostile address (illegal characters)"
msgstr "Неправилна адреса (недозвољени знакови)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1688,8 +1688,8 @@ msgid ""
" request."
msgstr ""
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Исписивање"
@@ -2268,17 +2268,17 @@ msgstr "HTML није промјењен."
msgid "HTML successfully updated."
msgstr "HTML је успјешно освјежен."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Листе слања у оквиру %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
msgstr ""
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2292,11 +2292,11 @@ msgstr ""
"или моћи да се упишете, испишете и промјените подешавања у \n"
"вези са вашим чланством."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "десно"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2304,21 +2304,21 @@ msgid ""
" <p>List administrators, you can visit "
msgstr ""
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "страница администратора листе: преглед"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
msgstr ""
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Уређивање опција"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Читајте ову страницу на:"
@@ -2341,74 +2341,74 @@ msgstr "Није дата адреса."
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Лоша е-адреса: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Нема корисника %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Ел. пошта са потврдом је послана."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
msgstr ""
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Порука са вашом лозинком вам је послана."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Пријављивање није успјело."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Порука са вашом лозинком вам је послана."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr ""
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr ""
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Адресе се не слажу!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Већ користите ту е-адресу"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2417,79 +2417,79 @@ msgid ""
"%(safeuser)s will be changed. "
msgstr ""
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr ""
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Адресе не могу бити празне"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Порука за потврду је послана на %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Унесена је погрешна/неисправна е-адреса"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Унесена је недозвољена адреса"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s већ је члан листе."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
" the list owners at %(owneraddr)s."
msgstr ""
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Име члана је успјешно промјењено."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
msgid ""
"The list administrator may not change the\n"
" password for a user."
msgstr ""
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Лозинке не могу да буду празне"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Лозинке се не слажу!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
" password for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Лозинка је успјешно промјењена."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
" have not been unsubscribed!"
msgstr ""
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Резултати исписа"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2497,7 +2497,7 @@ msgid ""
" decision."
msgstr ""
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2507,7 +2507,7 @@ msgid ""
" %(owneraddr)s."
msgstr ""
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2515,7 +2515,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2523,7 +2523,7 @@ msgid ""
" other options have been set successfully."
msgstr ""
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2531,82 +2531,82 @@ msgid ""
" your other options have been set successfully."
msgstr ""
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Успјешно сте сачували ваша подешавања."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Можете добити један најновији преглед."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Да, желим да се испишем</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Промјена моје лозинке"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Листа других мојих чланстава"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Пошаљи ми лозинку"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "лозинка"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Одјављивање"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Сачувај промјене"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "дана"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "дан"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr ""
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Промјени моју адресу и име"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Нема дефинисаних тема</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
"<em>%(cpuser)s</em>."
msgstr ""
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr ""
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "е-адреса и"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr ""
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2624,19 +2624,19 @@ msgid ""
" "
msgstr ""
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Е-адреса:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Лозинка:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Улаз"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2645,37 +2645,37 @@ msgid ""
" message)."
msgstr ""
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Подсјетник лозинке"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr ""
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Подсјећање"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<недостаје>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Тема: %(topicname)s не постоји"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Детаљи филтера тема"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Име:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr ""
@@ -4341,14 +4341,14 @@ msgstr "Преглед није послан. "
msgid "Invalid value for variable: %(property)s"
msgstr ""
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
#, fuzzy
msgid "Bad email address for option %(property)s: %(error)s"
msgstr ""
"Неправилно формирана ставка:\n"
" %(record)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4358,7 +4358,7 @@ msgid ""
" problem."
msgstr ""
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5102,7 +5102,13 @@ msgid ""
" changed! It must be an integer > 0."
msgstr ""
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -6963,39 +6969,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "почетак прегледа"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Почетак прегледа"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Данашње теме:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "крај прегледа"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Крај прегледа"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Крај "
@@ -7125,35 +7131,35 @@ msgstr "Успјешно сте се учланили на листу %(realname
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Успјешно сте се учланили на листу %(realname)s."
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr ""
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr ""
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr ""
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr ""
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
msgid "%(realname)s address change notification"
msgstr ""
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr ""
@@ -7319,7 +7325,7 @@ msgid ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
msgstr ""
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -7332,29 +7338,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -7368,45 +7388,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "%(member)s је већ члан"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Лоша е-адреса: празна линија"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Лоша е-адреса: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Лоша адреса (недозвољени знакови): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Учлањен: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Учлањен: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Нема листе под називом %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/sv/LC_MESSAGES/mailman.po b/messages/sv/LC_MESSAGES/mailman.po
index 06c7599d..ac522fcc 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -21,216 +21,216 @@ msgstr ""
# Mailman/Handlers/Scrubber.py:157 Mailman/Handlers/Scrubber.py:158
# Mailman/Cgi/admindb.py:461 Mailman/Handlers/Decorate.py:49
# Mailman/Handlers/Scrubber.py:194 Mailman/Handlers/Scrubber.py:195
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
#, fuzzy
msgid "size not available"
msgstr "inte tillgnglig"
# Mailman/Archiver/HyperArch.py:117
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr ""
# Mailman/Archiver/pipermail.py:166 Mailman/Archiver/pipermail.py:167
# Mailman/Archiver/pipermail.py:166 Mailman/Archiver/pipermail.py:167
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Utan titel"
# Mailman/Archiver/HyperArch.py:215
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr ""
# Mailman/Archiver/HyperArch.py:346
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Fregende meddelande:"
# Mailman/Gui/Archive.py:34
# Mailman/Archiver/HyperArch.py:378
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Nsta meddelande:"
# Mailman/Archiver/pipermail.py:452
# Mailman/Archiver/HyperArch.py:564 Mailman/Archiver/HyperArch.py:598
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
#, fuzzy
msgid "thread"
msgstr "trd"
# Mailman/Handlers/Scrubber.py:129
# Mailman/Archiver/HyperArch.py:565 Mailman/Archiver/HyperArch.py:599
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
#, fuzzy
msgid "subject"
msgstr "titel"
# Mailman/Archiver/HyperArch.py:566 Mailman/Archiver/HyperArch.py:600
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "frfattare"
# Mailman/Handlers/Scrubber.py:130
# Mailman/Archiver/HyperArch.py:567 Mailman/Archiver/HyperArch.py:601
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
#, fuzzy
msgid "date"
msgstr "datum"
# Mailman/Archiver/HyperArch.py:637
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Arkivet r fr nrvarande tomt."
# Mailman/Archiver/HyperArch.py:676
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzippad text%(sz)s"
# Mailman/Archiver/HyperArch.py:681
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Text%(sz)s"
# bin/rmlist:117 bin/rmlist:119
# Mailman/Archiver/HyperArch.py:771
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
#, fuzzy
msgid "figuring article archives\n"
msgstr "gr arkiv"
# Mailman/Archiver/HyperArch.py:781
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "April"
# Mailman/Archiver/HyperArch.py:781
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Februari"
# Mailman/Archiver/HyperArch.py:781
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Januari"
# Mailman/Archiver/HyperArch.py:781
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mars"
# Mailman/Archiver/HyperArch.py:782
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Augusti"
# Mailman/Archiver/HyperArch.py:782
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Juli"
# Mailman/Archiver/HyperArch.py:782
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Juni"
# Mailman/Cgi/options.py:666
# Mailman/Archiver/HyperArch.py:782 Mailman/i18n.py:91
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
#, fuzzy
msgid "May"
msgstr "Maj"
# Mailman/HTMLFormatter.py:289
# Mailman/Archiver/HyperArch.py:783
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
#, fuzzy
msgid "December"
msgstr "December"
# Mailman/HTMLFormatter.py:289
# Mailman/Archiver/HyperArch.py:783
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
#, fuzzy
msgid "November"
msgstr "November"
# Mailman/Archiver/HyperArch.py:783
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Oktober"
# Mailman/HTMLFormatter.py:289
# Mailman/Archiver/HyperArch.py:783
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
#, fuzzy
msgid "September"
msgstr "September"
# Mailman/Cgi/admin.py:282 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:157
# Mailman/Archiver/HyperArch.py:791
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
#, fuzzy
msgid "First"
msgstr "Frsta"
# Mailman/Archiver/HyperArch.py:791
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Fjrde"
# Mailman/Archiver/HyperArch.py:791
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Andra"
# Mailman/Cgi/admin.py:882
# Mailman/Archiver/HyperArch.py:791
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
#, fuzzy
msgid "Third"
msgstr "Tredje"
# Mailman/Archiver/HyperArch.py:793
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s kvartal %(year)i"
# Mailman/Archiver/HyperArch.py:800
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
# Mailman/Archiver/HyperArch.py:805
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Veckan med mndag %(day)i %(month)s %(year)i"
# Mailman/Archiver/HyperArch.py:809
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr ""
# Mailman/Archiver/HyperArch.py:906
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Bygger innehllsfrteckning\n"
# Mailman/Archiver/HyperArch.py:1168
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Uppdaterar HTML fr artikel %(seq)s"
# Mailman/Archiver/HyperArch.py:1174
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "artikelfil %(filename)s saknas!"
@@ -329,7 +329,7 @@ msgstr " Det sist mottagna returmeddelandet frn dig var daterat %(date)s"
# Mailman/Handlers/ToDigest.py:211 Mailman/ListAdmin.py:235
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(utan titel)"
@@ -363,7 +363,7 @@ msgstr "Administratr"
# Mailman/Cgi/rmlist.py:62 Mailman/Cgi/roster.py:57
# Mailman/Cgi/subscribe.py:61
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -376,7 +376,7 @@ msgstr "Listan finns inte: <em>%(safelistname)s</em>"
# Mailman/Cgi/subscribe.py:49 Mailman/Cgi/subscribe.py:60
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -388,7 +388,7 @@ msgstr "Fel"
# Mailman/Cgi/options.py:53
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -405,7 +405,7 @@ msgid "Authorization failed."
msgstr "Felaktigt lsenord"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -428,7 +428,7 @@ msgstr ""
# Mailman/Cgi/admin.py:179 Mailman/Cgi/admin.py:185 Mailman/Cgi/admin.py:190
# Mailman/Cgi/admin.py:1360 Mailman/Gui/GUIBase.py:184
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Varning: "
@@ -465,13 +465,13 @@ msgstr "E-postlistor p %(hostname)s - administrativa lnkar"
# Mailman/Cgi/admin.py:241 Mailman/Cgi/listinfo.py:97
# Mailman/Cgi/admin.py:241 Mailman/Cgi/listinfo.py:97
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Vlkommen!"
# Mailman/Cgi/admin.py:244 Mailman/Cgi/listinfo.py:100
# Mailman/Cgi/admin.py:244 Mailman/Cgi/listinfo.py:100
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -540,7 +540,7 @@ msgstr "<p>(Skicka frgor och kommentarer till "
# Mailman/Cgi/admin.py:282 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:157
# Mailman/Cgi/admin.py:282 Mailman/Cgi/listinfo.py:132 cron/mailpasswds:177
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Lista"
@@ -549,13 +549,13 @@ msgstr "Lista"
# Mailman/Cgi/admin.py:283 Mailman/Cgi/admin.py:554
# Mailman/Cgi/listinfo.py:133
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Beskrivning"
# Mailman/Cgi/admin.py:289 Mailman/Cgi/listinfo.py:139 bin/list_lists:103
# Mailman/Cgi/admin.py:289 Mailman/Cgi/listinfo.py:139 bin/list_lists:107
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[det finns ingen beskrivning tillgnglig]"
@@ -778,7 +778,7 @@ msgstr "Regexp-uttryck:"
# Mailman/Cgi/admin.py:702 Mailman/Cgi/options.py:918
# Mailman/Cgi/admin.py:705 Mailman/Cgi/options.py:942
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Beskrivning:"
@@ -1012,7 +1012,7 @@ msgstr "inga kopior"
# Mailman/Cgi/admin.py:886
# Mailman/Cgi/admin.py:892
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "sammandragsversion"
@@ -1058,7 +1058,7 @@ msgstr "R"
msgid "notmetoo"
msgstr "inte mina"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "stoppa e-postbrev"
@@ -1223,7 +1223,7 @@ msgstr "Inbjud"
# Mailman/Cgi/admin.py:1059 Mailman/Cgi/confirm.py:272
# Mailman/Cgi/listinfo.py:171
# Mailman/Cgi/admin.py:1064 Mailman/Cgi/listinfo.py:171
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Anml"
@@ -1594,7 +1594,7 @@ msgstr "Fel/Ogiltig e-postadress"
msgid "Hostile address (illegal characters)"
msgstr "Farlig e-postadress (innehller ogiltiga tecken)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -2491,8 +2491,8 @@ msgstr ""
# Mailman/Cgi/options.py:776 Mailman/Cgi/options.py:786
# Mailman/Cgi/confirm.py:442 Mailman/Cgi/options.py:659
# Mailman/Cgi/options.py:800 Mailman/Cgi/options.py:810
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Avanml mig"
@@ -3360,13 +3360,13 @@ msgstr "HTML-koden r uppdaterad."
# Mailman/Cgi/listinfo.py:71
# Mailman/Cgi/listinfo.py:71
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "E-postlistor p %(hostname)s"
# Mailman/Cgi/listinfo.py:103
# Mailman/Cgi/listinfo.py:103
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -3376,7 +3376,7 @@ msgstr ""
# Mailman/Cgi/listinfo.py:107
# Mailman/Cgi/listinfo.py:107
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -3393,13 +3393,13 @@ msgstr ""
# Mailman/Cgi/listinfo.py:113
# Mailman/Cgi/listinfo.py:113
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "rtt"
# Mailman/Cgi/listinfo.py:116
# Mailman/Cgi/listinfo.py:116
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
#, fuzzy
msgid ""
" To visit the general information page for an unadvertised list,\n"
@@ -3414,13 +3414,13 @@ msgstr ""
# Mailman/Cgi/listinfo.py:121
# Mailman/Cgi/listinfo.py:121
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "administrationssidan"
# Mailman/Cgi/listinfo.py:122
# Mailman/Cgi/listinfo.py:122
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
#, fuzzy
msgid ""
" to find the management interface for your list.\n"
@@ -3431,7 +3431,7 @@ msgstr ""
# Mailman/Cgi/listinfo.py:183
# Mailman/Cgi/listinfo.py:183
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "ndra instllningar"
@@ -3439,7 +3439,7 @@ msgstr "ndra instllningar"
# Mailman/Cgi/roster.py:111
# Mailman/Cgi/listinfo.py:190 Mailman/Cgi/options.py:766
# Mailman/Cgi/roster.py:111
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Se denna sida p"
@@ -3472,21 +3472,21 @@ msgstr "Fel/Ogiltig e-postadress: %(safeuser)s"
# Mailman/Cgi/options.py:176
# Mailman/Cgi/options.py:107 Mailman/Cgi/options.py:154
# Mailman/Cgi/options.py:176
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Medlemmen finns inte: %(safeuser)s."
# Mailman/Cgi/options.py:149 Mailman/Cgi/options.py:159
# Mailman/Cgi/options.py:149 Mailman/Cgi/options.py:159
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Ett e-postbrev med bekrftelse har skickats."
# Mailman/Commands/cmd_unsubscribe.py:69
# Mailman/Commands/cmd_unsubscribe.py:69
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -3499,7 +3499,7 @@ msgstr ""
# Mailman/Cgi/options.py:225
# Mailman/Cgi/options.py:170 Mailman/Cgi/options.py:182
# Mailman/Cgi/options.py:225
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
@@ -3508,7 +3508,7 @@ msgstr "Ett e-postbrev med lsenordet har skickats till dig."
# Mailman/Cgi/options.py:199
# Mailman/Cgi/options.py:199
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Inloggningen misslyckades."
@@ -3516,38 +3516,38 @@ msgstr "Inloggningen misslyckades."
# Mailman/Cgi/options.py:225
# Mailman/Cgi/options.py:170 Mailman/Cgi/options.py:182
# Mailman/Cgi/options.py:225
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Ett e-postbrev med lsenordet har skickats till dig."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
# Mailman/Cgi/options.py:231
# Mailman/Cgi/options.py:231
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
#, fuzzy
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Visa listmedlemskap fr %(safeuser)s p %(hostname)s"
# Mailman/Cgi/options.py:234
# Mailman/Cgi/options.py:234
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr ""
"Klicka p en lista fr att g till dina personliga instllningar fr den."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -3556,18 +3556,18 @@ msgstr ""
# Mailman/Cgi/options.py:275
# Mailman/Cgi/options.py:283
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresserna r inte lika!"
# Mailman/Cgi/options.py:280
# Mailman/Cgi/options.py:288
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Den e-postadressen r du redan anmld med p listan "
# Mailman/Cgi/options.py:300
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
#, fuzzy
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
@@ -3583,45 +3583,45 @@ msgstr ""
# bin/clone_member:138
# Mailman/Cgi/options.py:309
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
#, fuzzy
msgid "The new address is already a member: %(newaddr)s"
msgstr "Den nya adressen r redan medlem: %(newaddr)s"
# Mailman/Cgi/options.py:286
# Mailman/Cgi/options.py:315
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adresserna kan inte vara tomma"
# Mailman/Cgi/options.py:302
# Mailman/Cgi/options.py:327
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr ""
"Ett bekrftelsemeddelande har skickats i ett e-postbrev till %(newaddr)s."
# Mailman/Cgi/options.py:311
# Mailman/Cgi/options.py:336
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Ogiltig e-postadress har angivits"
# Mailman/Cgi/options.py:313
# Mailman/Cgi/options.py:338
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Ogiltig e-postadress har angivits"
# Mailman/Cgi/options.py:315
# Mailman/Cgi/options.py:340
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s r redan medlem av listan."
# Mailman/Commands/cmd_subscribe.py:92
# Mailman/Commands/cmd_subscribe.py:102
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -3634,13 +3634,13 @@ msgstr ""
# Mailman/Cgi/options.py:324
# Mailman/Cgi/options.py:349
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Namnet har ndrats. "
# Mailman/Cgi/options.py:557
# Mailman/Cgi/options.py:585
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -3653,19 +3653,19 @@ msgstr ""
# Mailman/Cgi/options.py:335
# Mailman/Cgi/options.py:360
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Lsenorden kan inte vara tomma"
# Mailman/Cgi/options.py:340
# Mailman/Cgi/options.py:365
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Lsenorden r inte lika!"
# Mailman/Cgi/options.py:557
# Mailman/Cgi/options.py:585
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -3681,14 +3681,14 @@ msgstr ""
# Mailman/Commands/cmd_password.py:105
# Mailman/Cgi/options.py:380 Mailman/Commands/cmd_password.py:79
# Mailman/Commands/cmd_password.py:105
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Ditt lsenord har ndrats."
# Mailman/Cgi/options.py:364
# Mailman/Cgi/options.py:389
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -3700,13 +3700,13 @@ msgstr ""
# Mailman/Cgi/options.py:396
# Mailman/Cgi/options.py:421
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Resultat av avanmlan"
# Mailman/Cgi/options.py:400
# Mailman/Cgi/options.py:425
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -3719,7 +3719,7 @@ msgstr ""
# Mailman/Cgi/options.py:405
# Mailman/Cgi/options.py:430
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -3734,7 +3734,7 @@ msgstr ""
"Har du frgor i samband med din avanmlan, kontakta listans gare p "
"%(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -3744,7 +3744,7 @@ msgstr ""
# Mailman/Cgi/options.py:553
# Mailman/Cgi/options.py:581
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -3758,7 +3758,7 @@ msgstr ""
# Mailman/Cgi/options.py:557
# Mailman/Cgi/options.py:585
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -3772,91 +3772,91 @@ msgstr ""
# Mailman/Cgi/options.py:561
# Mailman/Cgi/options.py:589
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Dina val r nu satta."
# Mailman/Cgi/options.py:564
# Mailman/Cgi/options.py:592
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Det kan vara s att du kommer att f ta emot ett sista e-postbrev."
# Mailman/Cgi/options.py:633
# Mailman/Cgi/options.py:661
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Ja, jag vill avanmla mig frn listan</em>"
# Mailman/Cgi/options.py:637
# Mailman/Cgi/options.py:665
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "ndra mitt lsenord"
# Mailman/Cgi/options.py:640
# Mailman/Cgi/options.py:668
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Visa andra listor som jag r medlem av"
# Mailman/Cgi/options.py:646
# Mailman/Cgi/options.py:674
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Skicka mig mitt lsenord"
# Mailman/Cgi/options.py:648
# Mailman/Cgi/options.py:676
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "lsenord"
# Mailman/Cgi/options.py:650
# Mailman/Cgi/options.py:678
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Logga ut"
# Mailman/Cgi/options.py:652
# Mailman/Cgi/options.py:680
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Spara ndringar"
# Mailman/Cgi/options.py:664
# Mailman/Cgi/options.py:692
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "dagar"
# Mailman/Cgi/options.py:666
# Mailman/Cgi/options.py:694
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "dag"
# Mailman/Cgi/options.py:667
# Mailman/Cgi/options.py:695
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
# Mailman/Cgi/options.py:673
# Mailman/Cgi/options.py:701
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "ndra min adress och mitt namn"
# Mailman/Cgi/options.py:701
# Mailman/Cgi/options.py:725
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "</em>Inget mne har definierats</em>"
# Mailman/Cgi/options.py:709
# Mailman/Cgi/options.py:733
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -3867,26 +3867,26 @@ msgstr ""
# Mailman/Cgi/options.py:723
# Mailman/Cgi/options.py:747
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s: inloggning till personliga instllningar"
# Mailman/Cgi/options.py:724
# Mailman/Cgi/options.py:748
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "din e-postadress och "
# Mailman/Cgi/options.py:726
# Mailman/Cgi/options.py:750
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
#, fuzzy
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s: personliga instllningar fr %(safeuser)s"
# Mailman/Cgi/options.py:752
# Mailman/Cgi/options.py:776
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -3918,25 +3918,25 @@ msgstr ""
# Mailman/Cgi/options.py:766
# Mailman/Cgi/options.py:790
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-postadress:"
# Mailman/Cgi/options.py:770
# Mailman/Cgi/options.py:794
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Lsenord:"
# Mailman/Cgi/options.py:772
# Mailman/Cgi/options.py:796
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Logga in"
# Mailman/Cgi/options.py:780
# Mailman/Cgi/options.py:804
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -3953,13 +3953,13 @@ msgstr ""
# Mailman/Cgi/options.py:788
# Mailman/Cgi/options.py:812
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Pminnelse om lsenord"
# Mailman/Cgi/options.py:792
# Mailman/Cgi/options.py:816
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -3969,37 +3969,37 @@ msgstr ""
# Mailman/Cgi/options.py:795
# Mailman/Cgi/options.py:819
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Skicka pminnelse"
# Mailman/Cgi/options.py:895
# Mailman/Cgi/options.py:919
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<saknas>"
# Mailman/Cgi/options.py:906
# Mailman/Cgi/options.py:930
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Det valda mnet r inte giltigt: %(topicname)s"
# Mailman/Cgi/options.py:911
# Mailman/Cgi/options.py:935
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Mer information om mnesfiltret"
# Mailman/Cgi/options.py:914
# Mailman/Cgi/options.py:938
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Namn:"
# Mailman/Cgi/options.py:916
# Mailman/Cgi/options.py:940
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Filter (regexp-uttryck):"
@@ -6647,13 +6647,13 @@ msgstr "Ogiltigt vrde fr: %(property)s"
# Mailman/Gui/GUIBase.py:147
# Mailman/Gui/GUIBase.py:153
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Ogiltig e-postadress fr instllningen %(property)s: %(error)s"
# Mailman/Gui/GUIBase.py:173
# Mailman/Gui/GUIBase.py:179
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -6668,7 +6668,7 @@ msgstr ""
# Mailman/Gui/GUIBase.py:187
# Mailman/Gui/GUIBase.py:193
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -7820,9 +7820,20 @@ msgstr ""
"<b>real_name</b> ndrades inte! Du kan bara ndra stora eller sm bokstver "
"i namnet."
+# Mailman/Gui/General.py:405
+# Mailman/Gui/General.py:409
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<b>real_name</b> ndrades inte! Du kan bara ndra stora eller sm bokstver "
+"i namnet."
+
# Mailman/Gui/General.py:422
# Mailman/Gui/General.py:430
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -10691,53 +10702,53 @@ msgstr ""
# Mailman/Handlers/ToDigest.py:140
# Mailman/Handlers/ToDigest.py:141
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Sammandrag av %(realname)s, Vol %(volume)d, Utgva %(issue)d"
# Mailman/Handlers/ToDigest.py:178
# Mailman/Handlers/ToDigest.py:181
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "topptext"
# Mailman/Handlers/ToDigest.py:181
# Mailman/Handlers/ToDigest.py:184
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Topptext"
# Mailman/Handlers/ToDigest.py:194
# Mailman/Handlers/ToDigest.py:197
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Dagens mnen:\n"
# Mailman/Handlers/ToDigest.py:261
# Mailman/Handlers/ToDigest.py:267
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Dagens mnen (%(msgcount)d meddelanden)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
# Mailman/Handlers/ToDigest.py:287
# Mailman/Handlers/ToDigest.py:292
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "bottentext"
# Mailman/Handlers/ToDigest.py:290
# Mailman/Handlers/ToDigest.py:295
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Bottentext"
# Mailman/Handlers/ToDigest.py:304
# Mailman/Handlers/ToDigest.py:309
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Slut p "
@@ -10962,49 +10973,49 @@ msgstr "Du r inte medlem av e-postlistan %(listname)s"
# Mailman/MailList.py:766 Mailman/MailList.py:1120
# Mailman/MailList.py:813 Mailman/MailList.py:1174
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " frn %(remote)s"
# Mailman/MailList.py:803
# Mailman/MailList.py:850
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "anmlan till %(realname)s krver godknnande av moderator"
# Mailman/MailList.py:861 bin/add_members:277
# Mailman/MailList.py:909 bin/add_members:281
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "Meddelande om anmlan till e-postlistan %(realname)s"
# Mailman/MailList.py:879
# Mailman/MailList.py:924
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "avanmlan krver godknnande av moderator"
# Mailman/MailList.py:900
# Mailman/MailList.py:945
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "Meddelande om avanmlan frn e-postlistan %(realname)s"
# Mailman/MailList.py:900
# Mailman/MailList.py:945
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "Meddelande om avanmlan frn e-postlistan %(realname)s"
# Mailman/MailList.py:1040
# Mailman/MailList.py:1089
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "Anmlan till %(name)s krver godknnande av administratr"
# Mailman/MailList.py:1343
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Dagens sista automatiska svarsmeddelande"
@@ -11267,7 +11278,7 @@ msgstr ""
# bin/add_members:26
# bin/add_members:26
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -11281,29 +11292,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -11368,61 +11393,72 @@ msgstr ""
# bin/add_members:163
# bin/add_members:167
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Redan medlem: %(member)s"
# bin/add_members:166
# bin/add_members:170
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Fel/Ogiltig e-postadress: tom rad"
# bin/add_members:168
# bin/add_members:172
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Fel/Ogiltig e-postadress: %(member)s"
# bin/add_members:170
# bin/add_members:174
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Ogiltigt tecken i e-postadressen: %(member)s"
# bin/add_members:172
# bin/add_members:176
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Anmld: %(member)s"
+
+# bin/add_members:172
+# bin/add_members:176
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Anmld: %(member)s"
# bin/add_members:226
# bin/add_members:230
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Ogiltigt argument till -w/--welcome-msg: %(arg)s"
# bin/add_members:233
# bin/add_members:237
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Ogiltigt argument till -a/--admin-notify: %(arg)s"
# bin/add_members:239
# bin/add_members:243
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Kan inte lsa bde medlemmar i normalversion och medlemmar i "
"sammandragsversion frn standard input."
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
# bin/add_members:245 bin/config_list:101 bin/find_member:93 bin/inject:86
# bin/list_admins:85 bin/list_members:175 bin/sync_members:218
# cron/bumpdigests:82
# bin/add_members:249 bin/config_list:105 bin/find_member:97 bin/inject:90
# bin/list_admins:89 bin/list_members:187 bin/sync_members:222
# cron/bumpdigests:86
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
@@ -11432,7 +11468,7 @@ msgstr "Listan finns inte: %(listname)s"
# cron/bumpdigests:74
# bin/add_members:269 bin/change_pw:158 bin/check_db:114 bin/sync_members:244
# cron/bumpdigests:78
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/tr/LC_MESSAGES/mailman.po b/messages/tr/LC_MESSAGES/mailman.po
index a1a65675..393742fd 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,157 +15,157 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "boyut belli deil"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr "%(size)i bayt"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Konu yok"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " at "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "nceki mesaj:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Sonraki mesaj:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "thread"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "konu"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "yazar"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "tarih"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>u anda herhangi bir ariv yok. </p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip'li Yaz%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Yaz%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "makale arivleri biimlendiriliyor\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Nisan"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "ubat"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Ocak"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Mart"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Austos"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Temmuz"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Haziran"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Mays"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Aralk"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Kasm"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Ekim"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Eyll"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "lk"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Drdnc"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "kinci"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "nc"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s eyrek %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Pazartesi %(day)i %(month)s %(year)i Haftas"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Thread'li indeks hesaplanyor\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "%(seq)s makalesi iin HTML gncelleniyor"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "makale dosyas %(filename)s yok!"
@@ -227,7 +227,7 @@ msgstr " Sizden gelen son geri dn %(date)s tarihindeydi"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(konu yok)"
@@ -245,7 +245,7 @@ msgid "Administrator"
msgstr "Ynetici"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -254,7 +254,7 @@ msgstr "<em>%(safelistname)s</em> adnda bir liste yok"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -264,7 +264,7 @@ msgstr "Hata"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -277,7 +277,7 @@ msgid "Authorization failed."
msgstr "Yetkilendirme baarsz."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -295,7 +295,7 @@ msgstr ""
" mesaj listeniz kullanlamaz hale gelecektir."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Uyar: "
@@ -323,11 +323,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s mesaj listeleri - Ynetici Linkleri"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Hogeldiniz!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -383,16 +383,16 @@ msgstr "mesaj listesi tantm sayfas"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Soru ve nerilerinizi u adrese gnderebilirsiniz: "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Liste"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Tanm"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[herhangi bir tanm yok]"
@@ -549,7 +549,7 @@ msgstr "Konu ismi:"
msgid "Regexp:"
msgstr "Regexp:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Tanm:"
@@ -709,7 +709,7 @@ msgid "nodupes"
msgstr "kopya<br>gnderme"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "toplu"
@@ -741,7 +741,7 @@ msgstr "G"
msgid "notmetoo"
msgstr "mesajm bana<br>gnderme"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "mesaj yok"
@@ -875,7 +875,7 @@ msgstr "Bu kullanclar hemen mi ye yaplsn yoksa davet mi edilsin?"
msgid "Invite"
msgstr "Davet Et"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "ye Yap"
@@ -1107,7 +1107,7 @@ msgstr "Kt/Geersiz e-posta adresi"
msgid "Hostile address (illegal characters)"
msgstr "Saldrgan adres (geersiz karakterler ieriyor)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1790,8 +1790,8 @@ msgstr ""
" <p>Veya <em>Vazge ve gzard et</em> dmesine tklayarak bu listeden\n"
" kma isteinizi iptal edin."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "yelikten k"
@@ -2464,11 +2464,11 @@ msgstr "HTML Deitirilmedi."
msgid "HTML successfully updated."
msgstr "HTML baaryla gncellendi."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s Mesaj Listeleri"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2476,7 +2476,7 @@ msgstr ""
"<p>u anda %(hostname)s zerinde genel kullanm iin ilan edilmi\n"
" %(mailmanlink)s mesaj listesi yok."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2492,11 +2492,11 @@ msgstr ""
"yelik\n"
" tercihlerinizi deitirebilirsiniz."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "sa"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2508,11 +2508,11 @@ msgstr ""
" liste ismini ekleyin.\n"
" <p>Liste yneticileri, listenizin ynetim arayzne ulamak iin "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "liste ynetim tantm sayfasna"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2521,11 +2521,11 @@ msgstr ""
" <p>Listeleri kullanrken problem yayorsanz, ltfen balant "
"kurunuz: "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Seenekleri Dzenle"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Bu sayfay u dilde gster"
@@ -2547,17 +2547,17 @@ msgstr "Adres verilmedi"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Geersiz e-posta adresi: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Byle bir ye yok: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Onay e-postas gnderildi."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2566,37 +2566,37 @@ msgstr ""
"Listeden kma isteiniz onay iin\n"
" liste yneticisine iletildi."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "ifreniz iin bir hatrlatc e-posta adresinize gnderildi"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Kimlik dorulamas baarsz oldu."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "ifreniz iin bir hatrlatc e-posta adresinize gnderildi"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "%(safeuser)s iin %(hostname)s zerindeki liste yelikleri"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2604,22 +2604,22 @@ msgstr ""
"stediiniz mesaj listesi iin seenekler sayfanz ziyaret etmek\n"
" iin bir linke tklayn."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Adresler birbirine elemedi!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Zaten o e-posta adresini kullanyorsunuz"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2633,31 +2633,31 @@ msgstr ""
"%(safeuser)s\n"
"adresini ieren tm dier mesaj listeleri deitirilecek. "
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Yeni adres zaten bir ye: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Adresler bo olamaz"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "%(newaddr)s adresine bir onay mesaj gnderildi. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Kt e-posta adresi verildi"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Geersiz e-posta adresi verildi"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s zaten listenin bir yesi."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2668,11 +2668,11 @@ msgstr ""
"yasaklanm. Eer bu kstlamann hatal olduunu dnyorsanz,\n"
"%(owneraddr)s adresinden liste yneticileriyle balant kurabilirsiniz."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "ye ismi baaryla deitirildi. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2683,15 +2683,15 @@ msgstr ""
"seenekleriniz\n"
" baaryla ayarland."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "ifreler bo olamaz"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "ifreler birbiriyle elemedi!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2703,12 +2703,12 @@ msgstr ""
"seenekleriniz\n"
" baaryla ayarland."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "ifre baaryla deitirildi."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2718,11 +2718,11 @@ msgstr ""
" altndaki onay kutusunu semeniz gerekir. Listeden "
"karlmadnz!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Listeden kma sonular"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2733,7 +2733,7 @@ msgstr ""
"liste moderatrlerine iletildi. Liste moderatrleri karar verdii zaman\n"
" bir bildirim alacaksnz."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2750,7 +2750,7 @@ msgstr ""
" varsa %(owneraddr)s adresinden liste sahipleri ile balantya\n"
" geebilirsiniz."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2758,7 +2758,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2770,7 +2770,7 @@ msgstr ""
"seenekleriniz\n"
" baaryla ayarland."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2782,63 +2782,63 @@ msgstr ""
"seenekleriniz\n"
" baaryla ayarland."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Seeneklerinizi baaryla ayarladnz."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Son bir toplu mesaj alabilirsiniz."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Evet, yelikten kmak istiyorum</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "ifremi Deitir"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Dier yeliklerimi listele"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "ifremi Bana E-Postayla Yolla"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "ifre"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "k"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Deiikliklerimi Gnder"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "gn"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "gn"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Adresimi ve smimi Deitir"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Herhangi bir konu tanmlanmad</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2848,19 +2848,19 @@ msgstr ""
"Bu listeye byk-kk harf ayar korunmu ekilde <em>%(cpuser)s</"
"em>adresiyle yesiniz."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s listesi: yelik seenekleri giri sayfas"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "e-posta adresi ve "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s listesi: %(safeuser)s kullancs iin yelik seenekleri"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2892,19 +2892,19 @@ msgstr ""
"hibiri yaplmayacaktr.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "E-posta adresi:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "ifre:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Giri"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2918,11 +2918,11 @@ msgstr ""
"onaylayabilirsiniz,\n"
" onay mesajndaki aklamalar inceleyin)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "ifre hatrlat"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2930,27 +2930,27 @@ msgstr ""
"Aada <em>Hatrlat</em> dmesine tkladnzda\n"
" ifreniz size e-postayla gnderilecektir."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Hatrlat"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<eksik>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "stenen konu geerli deil: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Konu filtre ayrntlar"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "sim:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Desen (regexp olarak):"
@@ -5149,11 +5149,11 @@ msgstr "Gnderilecek toplu mesaj yoktu."
msgid "Invalid value for variable: %(property)s"
msgstr "Deiken iin geersiz deer: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Seenek %(property)s iin kt e-posta adresi: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5168,7 +5168,7 @@ msgstr ""
" <p>Listeniz, bu sorunu gidermediiniz srece dzgn\n"
" almayabilir."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6219,7 +6219,16 @@ msgstr ""
"<strong>real_name</strong> zellii deimedi!\n"
" Liste isminden sadece byk-kk harf fark olmal."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<strong>real_name</strong> zellii deimedi!\n"
+" Liste isminden sadece byk-kk harf fark olmal."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8688,39 +8697,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Mesaj filtre kural elemesi sonucu reddedildi"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s Toplu Mesaj, Say %(volume)d, Konu %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "toplu mesaj bal"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Toplu Mesaj Bal"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Gnn Konular:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Gnn Konular (%(msgcount)d mesaj)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr ""
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "toplu mesaj altbilgisi"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Toplu Mesaj Altbilgisi"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Son: "
@@ -8872,36 +8881,36 @@ msgstr "%(listname)s mesaj listesine ye deilsiniz"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "%(listname)s mesaj listesine ye deilsiniz"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " %(remote)s adresinden "
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "%(realname)s listesine yelikler moderatr onay gerektirir"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s yelik bildirimi"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "yelikten kmak moderatr onay gerektirir"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s yelikten kma bildirimi"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s yelikten kma bildirimi"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "%(name)s listesine yelikler moderatr onay gerektirir"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Bugn iin son otomatik yant bildirimi"
@@ -9087,7 +9096,7 @@ msgid ""
msgstr ""
"%(day)2i %(mon)s %(year)04i %(wday)s %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -9100,29 +9109,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9136,45 +9159,54 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr ""
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr ""
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr ""
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr ""
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Liste yeleri"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr ""
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr ""
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/uk/LC_MESSAGES/mailman.po b/messages/uk/LC_MESSAGES/mailman.po
index 0e0b7725..4ab46224 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -15,157 +15,157 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "розмір відсутній"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i байт(ів)"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Тема відсутня"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " на "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Попереднє повідомлення:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Наступне повідомлення:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "за дискусіями"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "за темами"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "за авторами"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "за датою"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>Наразі архіви відсутні.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "текст, стиснений програмою gzip, %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "текст %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "визначається том архіву\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Квітень"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Лютий"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Січень"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Березень"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Серпень"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Липень"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Червень"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Травень"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Грудень"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Листопад"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Жовтень"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Вересень"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Перший"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Четвертий"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Другий"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Третій"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(ord)s квартал %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Тиждень, що зачинається з понеділка %(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i %(month)s %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Формується індекс за дискусіями\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Оновлюється HTML-відображення статті %(seq)s"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "відсутній файл статті %(filename)s!"
@@ -228,7 +228,7 @@ msgstr " Останнє повідомлення про помилку дост
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(тема відсутня)"
@@ -246,7 +246,7 @@ msgid "Administrator"
msgstr "адміністратор"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -255,7 +255,7 @@ msgstr "Список розсилки <em>%(safelistname)s</em> не існує"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -265,7 +265,7 @@ msgstr "Помилка"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -278,7 +278,7 @@ msgid "Authorization failed."
msgstr "Помилка доступу."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -296,7 +296,7 @@ msgstr ""
" випадку список буде неможливо використовувати."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Попередження: "
@@ -323,11 +323,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Списки розсилок на %(hostname)s - інтерфейс адміністратора"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Ласкаво просимо!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -382,16 +382,16 @@ msgstr "сторінка з короткою інформацією про сп
msgid "<p>(Send questions and comments to "
msgstr "<p>(Запитання та коментарі відсилати за адресою "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Список розсилки"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Опис"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[опис відсутній]"
@@ -547,7 +547,7 @@ msgstr "Назва теми:"
msgid "Regexp:"
msgstr "Регулярний вираз:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Опис:"
@@ -707,7 +707,7 @@ msgid "nodupes"
msgstr "без копій"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "збірки"
@@ -739,7 +739,7 @@ msgstr "П"
msgid "notmetoo"
msgstr "без власних"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "блоковано"
@@ -866,7 +866,7 @@ msgstr "Підписати цих користувачів чи запропон
msgid "Invite"
msgstr "Запропонувати"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Підписати"
@@ -1092,7 +1092,7 @@ msgstr "Неправильна поштова адреса"
msgid "Hostile address (illegal characters)"
msgstr "Помилкова адреса (недопустимі символи)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1769,8 +1769,8 @@ msgstr ""
" <p>Або натисніть <em>Скасувати та видалити запит</em>, щоб відмовитись\n"
" від припинення підписки."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Припинити підписку"
@@ -2434,11 +2434,11 @@ msgstr "HTML не змінився."
msgid "HTML successfully updated."
msgstr "HTML успішно оновлено."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s списки розсилки"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2446,7 +2446,7 @@ msgstr ""
"<p>На даний момент не існує публічних\n"
" списків розсилки %(mailmanlink)s на %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2461,11 +2461,11 @@ msgstr ""
" інформацію про список, або підписатись, відписатись, чи змінити\n"
" вподобання вашої підписки."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "існуючого"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2477,11 +2477,11 @@ msgstr ""
" символ '/', а після нього вказати назву %(adj)s списку розсилки.\n"
" <p>Адміністратори списків можуть відвідати "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "сторінку з інформацією для адміністратора,"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2489,11 +2489,11 @@ msgstr ""
" де знаходиться інтерфейс налаштовування вашого списку розсилки.\n"
" <p>При виникненні проблем з користуванням списком звертайтесь до "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Редагувати параметри"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Мова перегляду (view this page in):"
@@ -2515,17 +2515,17 @@ msgstr "Відсутня адреса"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Неправильна адреса: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Такий користувач відсутній: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Лист підтвердження відіслано."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2534,37 +2534,37 @@ msgstr ""
"Ваш запит на припинення підписки\n"
" пересланий керівнику списку для обробки."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Лист з нагадуванням паролю успішно вам відіслано."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Помилка аутентифікації."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Лист з нагадуванням паролю успішно вам відіслано."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Перелік отримувачів %(safeuser)s на %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2572,22 +2572,22 @@ msgstr ""
"Щоб перейти до налаштовування вашої підписки на список,\n"
" натисніть на посиланні."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "Адреси не співпадають!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Ви вже використовуєте цю адресу"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2600,31 +2600,31 @@ msgstr ""
"адресу %(safeuser)s буде замінено у будь-яких інших списках розсилки,\n"
"в яких вона зустрічається."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Ця адреса вже використовується користувачем: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Поле адреси не може бути порожнім"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Лист підтвердження відіслано до %(newaddr)s."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Неправильна електронна адреса"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Недопустима електронна адреса"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s вже є користувачем цього списку розсилки."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2635,11 +2635,11 @@ msgstr ""
"розсилки. Якщо ви вважаєте, що це обмеження помилкове,\n"
"зверніться до власника списку за адресою %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Ім'я користувача успішно змінено."
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2649,15 +2649,15 @@ msgstr ""
" списку розсилки, і зміни у параметри доставки не внесено.\n"
" Усі інші зміни у параметри успішно внесено."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Поле паролю не може бути порожнім"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Поля паролів не співпадають!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2668,12 +2668,12 @@ msgstr ""
" списку розсилки, і зміни у параметри доставки не внесено.\n"
" Усі інші зміни у параметри успішно внесено."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Пароль успішно змінено."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2683,11 +2683,11 @@ msgstr ""
" ознаку під кнопкою <em>Припинити підписку</em>. У іншому\n"
" випадку її не буде припинено!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Результати припинення підписки"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2699,7 +2699,7 @@ msgstr ""
" прийняття рішення керівником списку розсилки, ви отримаєте\n"
" повідомлення."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2714,7 +2714,7 @@ msgstr ""
" зверніться до власника списку розсилки\n"
" %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2722,7 +2722,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2733,7 +2733,7 @@ msgstr ""
" цього списку, тому зміни у параметри доставки не внесено.\n"
" Усі інші зміни у параметри успішно внесено."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2744,63 +2744,63 @@ msgstr ""
" списку розсилки, і зміни у параметри доставки не внесено.\n"
" Усі інші зміни у параметри успішно внесено."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Параметри успішно збережено."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Ви можете отримати ще одну, останню, збірку."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Так, я дійсно бажаю відмовитись від підписки<em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Змінити пароль"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Перелік інших списків, на які я підписаний"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Надіслати мені мій пароль"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "пароль"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Завершити роботу"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Внести зміни"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "днів"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "день"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Змінити мою адресу та ім'я"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Теми не визначені</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2810,19 +2810,19 @@ msgstr ""
"Адреса (із збереженням регістру) за якою ви підписні на цей список\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Список %(realname)s: реєстраційна сторінка параметрів учасника"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "електронну адресу та "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "Список %(realname)s: сторінка параметрів учасника %(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2850,19 +2850,19 @@ msgstr ""
" дозволити cookies, у іншому випадку жодні зміни не буде внесено.\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Електронна адреса:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Пароль:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Увійти"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2876,11 +2876,11 @@ msgstr ""
" (також можливо підтвердити поштою; інструкції дивіться у повідомленні\n"
" з підтвердженням)."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Нагадування паролю"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2888,27 +2888,27 @@ msgstr ""
"Ваш пароль буде надіслано ваш після натиснення\n"
" на кнопку <em>Нагадати</em>."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Нагадати"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<відсутня>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Запитана тема не є правильною: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Подробиці фільтру тем"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Назва:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Шаблон (регулярний вираз):"
@@ -5027,11 +5027,11 @@ msgstr "Збірка порожня, надсилання не буде."
msgid "Invalid value for variable: %(property)s"
msgstr "Неправильне значення змінної: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Неправильна адреса для параметра %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5046,7 +5046,7 @@ msgstr ""
" <p>Ваш список не буде працювали відповідним чином, доки ви\n"
" не усунете цю проблему."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6051,7 +6051,17 @@ msgstr ""
" Він повинен відрізнятись від назви списку лише регістром\n"
" літер."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Атрибут <b>real_name</b> не змінено!\n"
+" Він повинен відрізнятись від назви списку лише регістром\n"
+" літер."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8481,39 +8491,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Повідомлення відкинуте правилом фільтру"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Збірка %(realname)s, Том %(volume)d, Випуск %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "заголовок збірки"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Заголовок збірки"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Сьогоднішні теми:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Сьогоднішні теми (%(msgcount)d повідомлень)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Повідомлення відкинуте фільтром вмісту]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "кінцівка збірки"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Кінцівка збірки"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Кінець "
@@ -8663,36 +8673,36 @@ msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr ""
"Для виключення зі списку розсилки %(listname)s потрібне ваше підтвердження"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " з %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "підписка на %(realname)s вимагає схвалення керівником"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s сповіщення про підписку"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "видалення підписки вимагає схвалення керівником"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s сповіщення про припинення підписки"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s сповіщення про припинення підписки"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "підписка на %(name)s вимагає схвалення керівником"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Автоматична відповідь сповіщення на сьогодні"
@@ -8879,7 +8889,7 @@ msgid ""
msgstr ""
"%(wday)s %(day)2i %(mon)s %(year)04i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8893,29 +8903,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8971,47 +8995,56 @@ msgstr ""
"файлів\n"
"можна вказати `-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Вже є учасником: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Неправильна електронна адреса: рядок порожній"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Неправильна адреса: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Помилкова адреса (недопустимі символи): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Підписаний: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Підписаний: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Недопустимий аргумент для -w/--welcome-msg: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Недопустимий аргумент для -a/--admin-notify: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Неможливо зчитувати як отримувачів звичайних повідомлень, так і\n"
"отримувачів збірок з стандартного потоку вводу."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Такого списку розсилки немає: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/vi/LC_MESSAGES/mailman.po b/messages/vi/LC_MESSAGES/mailman.po
index e02c41d1..215e85e4 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -17,157 +17,157 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: LocFactoryEditor 1.7b1\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "kích cỡ không sẵn sàng"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i byte "
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "Không có chủ đề"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr " tại "
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "Thư trước:"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "Thư kế tiếp:"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "nhánh"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "chủ đề"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "tác giả"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "ngày"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<p>HIện thời không có kho.</p>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Văn bản đã nến Gzip%(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "Văn bản%(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "đang tính các kho bài thư\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "Tháng Tư"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "Tháng Hai"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "Tháng Giêng"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "Tháng Ba"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "Tháng Tám"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "Tháng Bảy"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "Tháng Sáu"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "Tháng Năm"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "Tháng Chạp"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "Tháng Mười Một"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "Tháng Mười"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "Tháng Chín"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "Thứ nhất"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "Thứ tư"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "Thứ hai"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "Thứ ba"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "Phần tư %(ord)s của %(year)i"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s, năm %(year)i"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "Tuần bắt đầu Thứ Hai, ngày %(day)i, %(month)s, năm %(year)i"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "ngày %(day)i, %(month)s, năm %(year)i"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "Đang tính toán chỉ mục có nhánh...\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "Đang cập nhật mã HTML cho bài thư %(seq)s..."
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "• Thiếu tập tin bài thư %(filename)s. •"
@@ -230,7 +230,7 @@ msgstr " Thư đã nảy về được nhận từ bạn có ngày %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(không có chủ đề)"
@@ -248,7 +248,7 @@ msgid "Administrator"
msgstr "Quản trị"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -257,7 +257,7 @@ msgstr "Không có hộp thư chung <em>%(safelistname)s</em> như vậy."
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -267,7 +267,7 @@ msgstr "Lỗi"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -280,7 +280,7 @@ msgid "Authorization failed."
msgstr "Việc cho quyền bị lỗi."
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -298,7 +298,7 @@ msgstr ""
"\tnếu không thì hộp thư chung này là vô ích cho bạn."
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "Cảnh báo : "
@@ -328,11 +328,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "Các hộp thư chung của %(hostname)s — Liên kết Quản trị"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "Chào mừng bạn !"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -386,16 +386,16 @@ msgstr "trang toàn cảnh hộp thư chung"
msgid "<p>(Send questions and comments to "
msgstr "<p>(Gởi câu hỏi và chú thích cho "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "Hộp thư chung"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "Mô tả"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[không có mô tả]"
@@ -551,7 +551,7 @@ msgstr "Tên chủ đề:"
msgid "Regexp:"
msgstr "Biểu thức c.q.:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "Mô tả:"
@@ -711,7 +711,7 @@ msgid "nodupes"
msgstr "k0 bản<br>sao"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "bó thư"
@@ -743,7 +743,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "k0 mình"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "k0 thư"
@@ -872,7 +872,7 @@ msgstr "Đăng ký ngay các người dùng này hoặc mời họ không?"
msgid "Invite"
msgstr "Mời"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "Đăng ký"
@@ -1100,7 +1100,7 @@ msgstr "Địa chỉ thư điện tử không hợp lệ"
msgid "Hostile address (illegal characters)"
msgstr "Địa chỉ đối nghịch (có ký tự cấm)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr "Địa chỉ cấm (khớp mẫu %(pattern)s)"
@@ -1765,8 +1765,8 @@ msgstr ""
"\n"
"Hoặc bấm <em>Thôi và hủy</em> để thôi yêu cầu bỏ đăng ký này."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "Bỏ đăng ký"
@@ -2434,11 +2434,11 @@ msgstr "Trang chưa thay đổi."
msgid "HTML successfully updated."
msgstr "Mã HTML đã được cập nhật."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "Các hộp thư chung của %(hostname)s"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
@@ -2446,7 +2446,7 @@ msgstr ""
"<p>Hiện thời không có hộp thư chung kiểu %(mailmanlink)s\n"
"\tđã công bố nào trên máy %(hostname)s."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2460,11 +2460,11 @@ msgstr ""
"\tđể xem thông tin thêm về nó, hoặc để đăng ký, bỏ đăng ký,\n"
"\thoặc thay đổi tùy thích về cách đăng ký."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "đúng"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2476,11 +2476,11 @@ msgstr ""
"\tnhưng cũng có sổ chéo « / » và tên hộp thư %(adj)s được phụ thêm.\n"
"\t<p>Quản trị hộp thư có thể thăm "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "trang toàn cảnh quản lý hộp thư"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2489,11 +2489,11 @@ msgstr ""
"\t<p>Nếu bạn gặp khó khăn sử dụng những hộp thư,\n"
"\tvui lòng liên lạc với "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "Tùy chọn hiệu chỉnh"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "Xem trang này bằng"
@@ -2515,17 +2515,17 @@ msgstr "Chưa nhập địa chỉ"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "Không cho phép địa chỉ : %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "Không có thành viên như vậy: %(safeuser)s."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "Thư xác nhận đã được gởi."
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
@@ -2534,22 +2534,22 @@ msgstr ""
"Yêu cầu bỏ đăng ký của bạn đã được chuyển tiếp\n"
"\ttới quản trị hộp thư để tán thành."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "Lời nhắc nhở mật khẩu đã được gởi cho bạn trong thư."
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "Xác thực thất bại."
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "Lời nhắc nhở mật khẩu đã được gởi cho bạn trong thư."
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
@@ -2557,16 +2557,16 @@ msgstr ""
"Quản trị hộp thư có lẽ sẽ không xem\n"
"\tnhững sự đăng ký khác cho người dùng này."
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr "Ghi chú : "
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "Các sự đăng ký hộp thư cho %(safeuser)s trên máy %(hostname)s"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
@@ -2574,7 +2574,7 @@ msgstr ""
"Nhắp vào liên kết nào để thăm trang tùy chọn\n"
"\tcho hộp thư đó."
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
@@ -2584,15 +2584,15 @@ msgstr ""
"\tcho các sự đăng ký khác của người dùng này.\n"
"\tTuy nhiên, tư cách đăng ký cho hộp thư này đã được thay đổi."
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "• Các địa chỉ không khớp. •"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "Bạn đang sử dụng địa chỉ thư đó."
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2605,31 +2605,31 @@ msgstr ""
"\ttoàn cục địa chỉ thư. Một khi bạn xác nhận, hộp thư khác nào\n"
"\tchứa địa chỉ thư %(safeuser)s sẽ cũng được thay đổi."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "Địa chỉ mới đã đăng ký trước: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "Không cho phép địa chỉ rỗng"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "Thư xác nhận đã được gởi cho %(newaddr)s. "
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "Bạn đã nhập một địa chỉ thư sai."
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "Bạn đã nhập một địa chỉ không được phép."
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s đã đăng ký trước này với hộp thư này."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
msgid ""
"%(newaddr)s is banned from this list. If you\n"
" think this restriction is erroneous, please contact\n"
@@ -2638,11 +2638,11 @@ msgstr ""
"%(newaddr)s bị cấm ra hộp thư này.\tNếu bạn xem là hạn chế này không đúng,\n"
"\tvui lòng liên lạc với quản trị hộp thư tại %(owneraddr)s."
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "Tên thành viên đã được thay đổi. "
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2651,15 +2651,15 @@ msgstr ""
"Quản trị hộp thư có lẽ sẽ không xem\n"
"\tnhững sự đăng ký khác cho người dùng này."
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "Không cho phép mật khẩu rỗng."
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "Mật khẩu không khớp."
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
msgid ""
"The list administrator may not change the\n"
" password for this user's other subscriptions. However, the\n"
@@ -2669,12 +2669,12 @@ msgstr ""
"\tcho các sự đăng ký khác của người dùng này.\n"
"\tTuy nhiên, mật khẩu cho hộp thư này đã được thay đổi."
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "Mật khẩu đã được thay đổi."
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2684,11 +2684,11 @@ msgstr ""
"\ttrong hộp chọn bên dưới nút <em>Bỏ đang ký</em>.\n"
"\t• Bạn chưa được bỏ đăng ký. •"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "Kết quả bỏ đăng ký"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2699,7 +2699,7 @@ msgstr ""
"\ttới những điều tiết viên của hộp thư để tán thành.\n"
"\tBạn sẽ nhận thông báo về cách quyết định."
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2713,7 +2713,7 @@ msgstr ""
"\tMỗi câu hỏi về cách bỏ đăng ký, vui lòng liên lạc với\n"
"\tquản trị hộp thư tại %(owneraddr)s."
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2724,7 +2724,7 @@ msgstr ""
"\tcho các sự đăng ký khác của người dùng này.\n"
"\tTuy nhiên, các tùy chọn cho hộp thư này đã được thay đổi."
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2735,7 +2735,7 @@ msgstr ""
"\tnên không thể đặt tùy chọn phát đó của bạn.\n"
"\tTuy nhiên, các tùy chọn khác của bạn đã được đặt."
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2746,64 +2746,64 @@ msgstr ""
"\tnên không thể đặt tùy chọn phát đó của bạn.\n"
"\tTuy nhiên, các tùy chọn khác của bạn đã được đặt."
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "Bạn đã đặt các tùy chọn mình."
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "Có lẽ bạn sẽ nhận một bó thư nữa."
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>Có phải, tôi thật muốn bỏ đăng ký</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "Đổi mật khẩu mình"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "Liệt kê các sự đăng ký khác của tôi"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "Gởi thư chứa mật khẩu mình cho tôi"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "mật khẩu"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "Đăng xuất"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "Ghi nhận thay đổi"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "ngày"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "ngày"
# Variable: don't translate / Biến: đừng dịch
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "Đổi địa chỉ và tên mình"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>Chưa ghi rõ chủ đề</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2813,21 +2813,21 @@ msgstr ""
"Bạn đã được đăng ký với hộp thư chung này với địa chỉ\n"
"\tđã bảo tồn chữ hoa/thường <em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "Hộp thư chung %(realname)s: trang đăng nhập tùy chọn thành viên"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "địa chỉ thư và "
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr ""
"Hộp thư chung %(realname)s: các tùy chọn thành viên cho người dùng "
"%(safeuser)s"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2857,19 +2857,19 @@ msgstr ""
"\ttrong bộ duyệt Web mình; nếu không thì không có thay đổi của bạn sẽ có tác "
"động."
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Địa chỉ thư :"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "Mật khẩu :"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "Đăng nhập"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2882,11 +2882,11 @@ msgstr ""
"\tHoặc bạn có thể xác nhận bằng thư điện tử :\n"
"\txem những hướng dẫn trong thư xác nhận đó."
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "Nhắc nhở mật khẩu"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
@@ -2894,27 +2894,27 @@ msgstr ""
"Sau khi bạn nhắp vào nút <em>Nhắc nhở</em>,\n"
"\tbận sẽ nhận mật khẩu mình trong thư."
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "Nhắc nhở"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<còn thiếu>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "Bạn đã yêu cầu một chủ đề không hợp lệ: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "Chi tiết về bộ lọc chủ đề"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "Tên:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "Mẫu (biểu thức c.q.):"
@@ -5055,11 +5055,11 @@ msgstr "Không có bó thư cần gởi."
msgid "Invalid value for variable: %(property)s"
msgstr "Giá trị không hợp lệ cho biến: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "Địa chỉ thư điện tử sai cho tùy chọn %(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -5074,7 +5074,7 @@ msgstr ""
"<p>Có lẽ hộp thư chung của bạn không hoạt động cho đúng,\n"
"cho đến khi bạn sửa vấn đề này."
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -6060,7 +6060,16 @@ msgstr ""
"Thuộc tính <b>admin_member_chunksize</b>\n"
"\tchưa thay đổi ! Nó phải là số nguyên > 0."
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"Thuộc tính <b>admin_member_chunksize</b>\n"
+"\tchưa thay đổi ! Nó phải là số nguyên > 0."
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8533,39 +8542,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "Thư bị từ chối vì khớp với quy tắc lọc"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "Bó thư %(realname)s, Tập %(volume)d, Bản %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "dòng đầu bó thư"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "Dòng đầu bó thư"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "Các chủ đề của hôm nay:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "Các chủ đề của hôm nay (%(msgcount)d thư)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[Thư bị hủy do bộ lọc nội dung]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "dòng chân bó thư"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "Dòng chân bó thư"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "Kết thúc của "
@@ -8714,40 +8723,40 @@ msgstr "Cần thiết bạn xác nhận để tham gia hộp thư chung %(listna
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "Cần thiết bạn xác nhận để rời đi ra hộp thư chung %(listname)s"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " từ %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr ""
"các việc đăng ký với hộp thư chung %(realname)s cần thiết điều tiết viên tán "
"thành"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "thông báo đăng ký với hộp thư chung %(realname)s"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "các việc bỏ đăng ký cần thiết điều tiết viên tán thành"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "thông báo bỏ đăng ký với hộp thư chung %(realname)s"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "thông báo bỏ đăng ký với hộp thư chung %(realname)s"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr ""
"các việc đăng ký với hộp thư chung %(name)s cần thiết điều tiết viên tán "
"thành"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "Thông báo đáp ứng tự động cuối cùng của hôm nay"
@@ -8932,7 +8941,7 @@ msgid ""
msgstr ""
"%(wday)s %(day)2i %(mon)s %(year)04i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8946,29 +8955,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -9025,46 +9048,55 @@ msgstr ""
"Bạn phải cung cấp ít nhất một của hai tùy chọn « -r » và « -d ».\n"
"Chỉ một của những tập tin này có thể là « - ».\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "Đã thành viên: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "Địa chỉ thư điện tử không hợp lệ hoặc sai : dòng rỗng"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "Địa chỉ thư điện tử không hợp lệ hoặc sai : %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "Địa chỉ thư đối nghịch (ký tự bị cấm): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "Đã đăng ký : %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "Đã đăng ký : %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "Đối sô sai tới « -w » / « --welcome-msg »: %(arg)s"
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "Đối sô sai tới « -a » / « --admin-notify »: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
"Không thể đọc thành viên kiểu cả bó thư lẫn chuẩn đều từ thiết bị nhập chuẩn."
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "Không có hộp thư chung như vậy: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/zh_CN/LC_MESSAGES/mailman.po b/messages/zh_CN/LC_MESSAGES/mailman.po
index d9162852..371002c3 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -11,157 +11,157 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: pygettext.py 1.4\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "不被允许的大小"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr "%(size)i 字节"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "无主题"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr "在"
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "上一条消息"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "下一条消息"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "线索"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "主题"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "作者"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "日期"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>目前没有归档文件 </P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip压缩文本大小为 %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "文本大小为 %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "处理文章存档\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "四月"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "二月"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "一月"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "三月"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "八月"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "七月"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "六月"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "五月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "十二月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "十一月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "十月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "九月"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "第一"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "第四"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "第二"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "第三"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)i 的第 %(ord)s 季度"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(month)s 月 %(year)i 年"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr ""
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(day)i 日 %(month)s 月 %(year)i 年"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "计算索引\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "为文章 %(seq)s 更新HTML"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "文章文件 %(filename)s 丢失"
@@ -223,7 +223,7 @@ msgstr "您最后的退信日期为 %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(无主题)"
@@ -241,7 +241,7 @@ msgid "Administrator"
msgstr "管理员"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -250,7 +250,7 @@ msgstr "没有类似的列表 <em>%(safelistname)s</em>"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -260,7 +260,7 @@ msgstr "错误"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -273,7 +273,7 @@ msgid "Authorization failed."
msgstr "认证失败"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -290,7 +290,7 @@ msgstr ""
"不然你的邮件列表基本是无法使用的。"
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "警告:"
@@ -317,11 +317,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s 的邮件列表 - 管理链接"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "欢迎!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "Mailman"
@@ -373,16 +373,16 @@ msgstr "邮件列表简介页"
msgid "<p>(Send questions and comments to "
msgstr "<p>(发送问题和评论到"
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "列表"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "描述"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "[没有描述]"
@@ -537,7 +537,7 @@ msgstr "主题名"
msgid "Regexp:"
msgstr "正则表达式"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "描述"
@@ -696,7 +696,7 @@ msgid "nodupes"
msgstr "无副本"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "摘要"
@@ -728,7 +728,7 @@ msgstr "B"
msgid "notmetoo"
msgstr "除了我"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "没有邮件"
@@ -845,7 +845,7 @@ msgstr "替这些用户订阅或者邀请他们"
msgid "Invite"
msgstr "邀请"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "订阅"
@@ -1068,7 +1068,7 @@ msgstr "错误/无效的邮件地址"
msgid "Hostile address (illegal characters)"
msgstr "不合法的地址(含有非法的字符)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1721,8 +1721,8 @@ msgstr ""
"\n"
" <p>或者点击 <em>取消并且删除</em> 来撤销您的取消订阅请求."
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "取消订阅"
@@ -2365,17 +2365,17 @@ msgstr "HTML 没有改变."
msgid "HTML successfully updated."
msgstr "HTML更新成功."
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr " %(hostname)s 邮件列表"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
msgstr "<p>目前在 %(hostname)s 上没有公开的 %(mailmanlink)s 邮件列表."
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2388,11 +2388,11 @@ msgstr ""
" 点击列表名称以获得关于该列表更多的信息,或者订阅,取消订阅,更改您订"
"阅的偏好设置."
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "正确"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2403,11 +2403,11 @@ msgstr ""
" 打开类似的 URL , 但是在列表名后附加上 '/' 和 %(adj)s .\n"
" <p>如果你是列表管理员,您可以访问 "
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "列表管理概览页面"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2415,11 +2415,11 @@ msgstr ""
" 以找到您的列表管理接口.\n"
" <p>如果您在使用列表时碰到的麻烦,请与我们联系 "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "编辑选项"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "选择本页所用的语言:"
@@ -2441,75 +2441,75 @@ msgstr "没有给出地址"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "非法的邮件地址: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "不存在 %(safeuser)s 这个成员."
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "确认邮件已经发送"
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
msgstr "您的取消订阅的请求已经转发给列表管理员,等待批准."
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "您的密码提示已经发送到您的电子信箱了"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "认证失败"
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "您的密码提示已经发送到您的电子信箱了"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "为 %(safeuser)s 列出在 %(hostname)s 上的订阅"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "点击连接以访问您请求的邮件列表的选项页面"
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "地址不匹配!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "您已经使用了那个邮件地址"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2521,31 +2521,31 @@ msgstr ""
"但是您仍然请求对这个地址进行全局的修改.\n"
"确认后, 其他包含 %(safeuser)s 这个地址的邮件列表将被修改."
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "新的地址 %(newaddr)s 已经是成员了"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "地址不能为空"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "确认信息已经发送到了 %(newaddr)s ."
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "提供了错误的邮件地址"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "提供了非法的邮件地址"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s 已经是列表的成员."
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2555,11 +2555,11 @@ msgstr ""
"您提供的邮件地址被禁止。如果您觉得这些限制是错误的,\n"
"请联系列表管理员 %(owneraddr)s"
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "成员姓名修改成功"
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2568,15 +2568,15 @@ msgstr ""
"列表管理员已经禁止了此列表的非摘要投递功能,所以您的\n"
" 投递选项没有被设置,但是您的其他选项都已成功地设置。"
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "密码不能为空"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "密码不匹配!"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2586,12 +2586,12 @@ msgstr ""
"列表管理员已经禁止了此列表的非摘要投递功能,所以您的\n"
" 投递选项没有被设置,但是您的其他选项都已成功地设置。"
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "密码修改成功"
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2600,11 +2600,11 @@ msgstr ""
"为了确认您取消订阅的请求,您必须选中复选框中 <em>取消订阅</em> \n"
" 这一项. 您还没有取消订阅!"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "退订结果"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2614,7 +2614,7 @@ msgstr ""
"您的退订请求已被收到并转发给列表管理员以待其核准。\n"
" 管理员作出决定后您将受到一封邮件通知。"
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2628,7 +2628,7 @@ msgstr ""
"的\n"
" 问题,请联系列表管理员: %(owneraddr)s。"
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2636,7 +2636,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2646,7 +2646,7 @@ msgstr ""
"列表管理员已经禁止了此列表的摘要投递功能,所以您的\n"
" 投递选项没有被设置,但是您的其他选项都已成功地设置。"
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2656,63 +2656,63 @@ msgstr ""
"列表管理员已经禁止了此列表的非摘要投递功能,所以您的\n"
" 投递选项没有被设置,但是您的其他选项都已成功地设置。"
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "您已经成功设置您的选项。"
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "您可能会收到最后一封摘要。"
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>是的,我确实想要退订</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "修改我的口令"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "列出我的所有订阅"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "把我的口令邮寄给我"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "口令"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "退出登录"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "提交我的修改"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "天"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "天"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "修改我的地址和姓名"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>没有已定义的主题</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2722,19 +2722,19 @@ msgstr ""
"您使用大小写相关的地址订阅了此列表\n"
"<em>%(cpuser)s</em>."
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s 列表: 成员选项登录页 "
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "邮件地址和"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s 列表: 用户 %(safeuser)s 的成员选项信息"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2762,19 +2762,19 @@ msgstr ""
" 否则您做的所有修改都将不起作用。\n"
" "
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "邮件地址:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "口令:"
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "登录"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2786,37 +2786,37 @@ msgstr ""
" 您需要点击确认函中的一个链接来完成整个退订过程(您也可以通过邮件来确认,\n"
" 请参考确认函中的具体信息)。"
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "口令提示函"
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr "通过点击<em>提示</em>按钮,您的口令将被邮寄给您。"
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "提示"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<丢失>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "请求的主题不存在: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "主题过滤器详情"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "名字:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "模式(正则表达式)"
@@ -4825,11 +4825,11 @@ msgstr "没有要发送的摘要。"
msgid "Invalid value for variable: %(property)s"
msgstr "该变量的值非法:%(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "错误的邮件地址选项%(property)s: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4842,7 +4842,7 @@ msgstr ""
" <code>%(bad)s</code>\n"
" <p>不更正这些问题,你的列表可能无法正常运作"
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
" have some correctable problems in its new value.\n"
@@ -5779,7 +5779,14 @@ msgid ""
" changed! It must be an integer > 0."
msgstr "<b>real_name</b>属性没有被修改!它必须与邮件列表有大小写上的不同"
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr "<b>real_name</b>属性没有被修改!它必须与邮件列表有大小写上的不同"
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -8097,39 +8104,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "由于匹配过滤规则而被拒绝的信件"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s 摘要, 卷 %(volume)d, 发布 %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "摘要头部"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "摘要头部"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "本日主题:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "本日主题 (%(msgcount)d 封信件)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[被内容过滤程序删除的信件]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "摘要尾部"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "摘要尾部"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "结束"
@@ -8272,36 +8279,36 @@ msgstr "您需要对加入 %(listname)s 邮件列表进行确认"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "您需要对退出 %(listname)s 邮件列表进行确认"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr "来自 %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "对 %(realname)s 的订阅请求需要列表主持者批准"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
msgid "%(realname)s subscription notification"
msgstr "%(realname)s 订阅通知"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
msgid "unsubscriptions require moderator approval"
msgstr "退订需要列表主持人批准"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
msgid "%(realname)s unsubscribe notification"
msgstr "%(realname)s 退订通知"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%(realname)s 退订通知"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
msgid "subscriptions to %(name)s require administrator approval"
msgstr "%(name)s 的订阅需要管理员批准"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr "本日最后一条自动回复通知"
@@ -8485,7 +8492,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
#, fuzzy
msgid ""
"Add members to a list from the command line.\n"
@@ -8499,29 +8506,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -8569,45 +8590,54 @@ msgstr ""
"\n"
"-r和-d选项您必须至少C指定一个.最多可以指定一个文件为`-'.\n"
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
msgid "Already a member: %(member)s"
msgstr "已经是成员:%(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
msgid "Bad/Invalid email address: blank line"
msgstr "错误/不合法的邮件地址: 空行"
-#: bin/add_members:155
+#: bin/add_members:180
msgid "Bad/Invalid email address: %(member)s"
msgstr "错误/不合法的邮件地址: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
msgid "Hostile address (illegal characters): %(member)s"
msgstr "恶意地址(非法字符): %(member)s"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "已订阅: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "已订阅: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr "-w/--welcome-msg选项的错误参数: %(arg)s "
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr "-a/--admin-notify选项的错误参数: %(arg)s"
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr "无法从标准输入既读取摘要用户又读取正常用户 "
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
msgid "No such list: %(listname)s"
msgstr "没有此列表: %(listname)s"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
msgid "Nothing to do."
diff --git a/messages/zh_TW/LC_MESSAGES/mailman.po b/messages/zh_TW/LC_MESSAGES/mailman.po
index 4bfca0f8..b1c1b7c8 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 Jan 30 08:13:26 2018\n"
+"POT-Creation-Date: Fri May 25 15:13:52 2018\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"
@@ -17,157 +17,157 @@ msgstr ""
"Content-Transfer-Encoding: 8-big5\n"
"Generated-By: pygettext.py 0.2\n"
-#: Mailman/Archiver/HyperArch.py:123
+#: Mailman/Archiver/HyperArch.py:124
msgid "size not available"
msgstr "大小不明"
-#: Mailman/Archiver/HyperArch.py:129
+#: Mailman/Archiver/HyperArch.py:130
msgid " %(size)i bytes "
msgstr " %(size)i 個位元組"
-#: Mailman/Archiver/HyperArch.py:275 Mailman/Archiver/pipermail.py:181
+#: Mailman/Archiver/HyperArch.py:276 Mailman/Archiver/pipermail.py:181
#: Mailman/Archiver/pipermail.py:182
msgid "No subject"
msgstr "無主題"
-#: Mailman/Archiver/HyperArch.py:291 Mailman/Archiver/HyperArch.py:294
-#: Mailman/Archiver/HyperArch.py:425 Mailman/Archiver/HyperArch.py:483
-#: Mailman/Archiver/HyperArch.py:592 Mailman/Archiver/HyperArch.py:1066
-#: Mailman/Archiver/HyperArch.py:1195
+#: Mailman/Archiver/HyperArch.py:292 Mailman/Archiver/HyperArch.py:295
+#: Mailman/Archiver/HyperArch.py:426 Mailman/Archiver/HyperArch.py:484
+#: Mailman/Archiver/HyperArch.py:593 Mailman/Archiver/HyperArch.py:1067
+#: Mailman/Archiver/HyperArch.py:1196
msgid " at "
msgstr "於"
-#: Mailman/Archiver/HyperArch.py:512
+#: Mailman/Archiver/HyperArch.py:513
#, fuzzy
msgid "Previous message (by thread):"
msgstr "前一則訊息"
-#: Mailman/Archiver/HyperArch.py:534
+#: Mailman/Archiver/HyperArch.py:535
#, fuzzy
msgid "Next message (by thread):"
msgstr "後一則訊息"
-#: Mailman/Archiver/HyperArch.py:707 Mailman/Archiver/HyperArch.py:743
+#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
msgid "thread"
msgstr "討論串"
-#: Mailman/Archiver/HyperArch.py:708 Mailman/Archiver/HyperArch.py:744
+#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
msgid "subject"
msgstr "主題"
-#: Mailman/Archiver/HyperArch.py:709 Mailman/Archiver/HyperArch.py:745
+#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
msgid "author"
msgstr "作者"
-#: Mailman/Archiver/HyperArch.py:710 Mailman/Archiver/HyperArch.py:746
+#: Mailman/Archiver/HyperArch.py:711 Mailman/Archiver/HyperArch.py:747
msgid "date"
msgstr "日期"
-#: Mailman/Archiver/HyperArch.py:782
+#: Mailman/Archiver/HyperArch.py:783
msgid "<P>Currently, there are no archives. </P>"
msgstr "<P>目前沒有歸檔。</P>"
-#: Mailman/Archiver/HyperArch.py:820
+#: Mailman/Archiver/HyperArch.py:821
msgid "Gzip'd Text%(sz)s"
msgstr "Gzip 壓過的 %(sz)s"
-#: Mailman/Archiver/HyperArch.py:825
+#: Mailman/Archiver/HyperArch.py:826
msgid "Text%(sz)s"
msgstr "文字 %(sz)s"
-#: Mailman/Archiver/HyperArch.py:915
+#: Mailman/Archiver/HyperArch.py:916
msgid "figuring article archives\n"
msgstr "正在尋找文件的歸檔\n"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "April"
msgstr "四月"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "February"
msgstr "二月"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "January"
msgstr "一月"
-#: Mailman/Archiver/HyperArch.py:925
+#: Mailman/Archiver/HyperArch.py:926
msgid "March"
msgstr "三月"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "August"
msgstr "八月"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "July"
msgstr "七月"
-#: Mailman/Archiver/HyperArch.py:926
+#: Mailman/Archiver/HyperArch.py:927
msgid "June"
msgstr "六月"
-#: Mailman/Archiver/HyperArch.py:926 Mailman/i18n.py:137
+#: Mailman/Archiver/HyperArch.py:927 Mailman/i18n.py:137
msgid "May"
msgstr "五月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "December"
msgstr "十二月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "November"
msgstr "十一月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "October"
msgstr "十月"
-#: Mailman/Archiver/HyperArch.py:927
+#: Mailman/Archiver/HyperArch.py:928
msgid "September"
msgstr "九月"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "First"
msgstr "第一"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Fourth"
msgstr "第四"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Second"
msgstr "第二"
-#: Mailman/Archiver/HyperArch.py:935
+#: Mailman/Archiver/HyperArch.py:936
msgid "Third"
msgstr "第三"
-#: Mailman/Archiver/HyperArch.py:937
+#: Mailman/Archiver/HyperArch.py:938
msgid "%(ord)s quarter %(year)i"
msgstr "%(year)i年%(ord)s季"
-#: Mailman/Archiver/HyperArch.py:944
+#: Mailman/Archiver/HyperArch.py:945
msgid "%(month)s %(year)i"
msgstr "%(year)i年%(month)s"
-#: Mailman/Archiver/HyperArch.py:949
+#: Mailman/Archiver/HyperArch.py:950
msgid "The Week Of Monday %(day)i %(month)s %(year)i"
msgstr "%(year)i年%(month)s%(day)i日(星期一)該週"
-#: Mailman/Archiver/HyperArch.py:953
+#: Mailman/Archiver/HyperArch.py:954
msgid "%(day)i %(month)s %(year)i"
msgstr "%(year)i年%(month)s%(day)i日"
-#: Mailman/Archiver/HyperArch.py:1053
+#: Mailman/Archiver/HyperArch.py:1054
msgid "Computing threaded index\n"
msgstr "正在計算討論串的索引\n"
-#: Mailman/Archiver/HyperArch.py:1318
+#: Mailman/Archiver/HyperArch.py:1319
msgid "Updating HTML for article %(seq)s"
msgstr "正在更新 %(seq)s 號文件的 HTML"
-#: Mailman/Archiver/HyperArch.py:1325
+#: Mailman/Archiver/HyperArch.py:1326
msgid "article file %(filename)s is missing!"
msgstr "文件檔 %(filename)s 不見了!"
@@ -229,7 +229,7 @@ msgstr "您信箱的前一次退信是在 %(date)s"
#: Mailman/Bouncer.py:329 Mailman/Deliverer.py:146
#: Mailman/Handlers/Acknowledge.py:44 Mailman/Handlers/CookHeaders.py:435
-#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:251
+#: Mailman/Handlers/Hold.py:215 Mailman/Handlers/ToDigest.py:250
#: Mailman/ListAdmin.py:223
msgid "(no subject)"
msgstr "(沒有主題)"
@@ -247,7 +247,7 @@ msgid "Administrator"
msgstr "論壇管理人"
#: Mailman/Cgi/admin.py:80 Mailman/Cgi/admindb.py:121 Mailman/Cgi/confirm.py:62
-#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:56
+#: Mailman/Cgi/edithtml.py:86 Mailman/Cgi/listinfo.py:55
#: Mailman/Cgi/options.py:98 Mailman/Cgi/private.py:108
#: Mailman/Cgi/rmlist.py:75 Mailman/Cgi/roster.py:59
#: Mailman/Cgi/subscribe.py:67
@@ -256,7 +256,7 @@ msgstr "沒有<em>%(safelistname)s</em>這個論壇"
#: Mailman/Cgi/admin.py:95 Mailman/Cgi/admindb.py:136 Mailman/Cgi/confirm.py:80
#: Mailman/Cgi/create.py:50 Mailman/Cgi/edithtml.py:103
-#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:117
+#: Mailman/Cgi/listinfo.py:67 Mailman/Cgi/options.py:117
#: Mailman/Cgi/private.py:125 Mailman/Cgi/rmlist.py:48 Mailman/Cgi/roster.py:72
#: Mailman/Cgi/roster.py:146 Mailman/Cgi/roster.py:147
#: Mailman/Cgi/subscribe.py:55 Mailman/Cgi/subscribe.py:66
@@ -266,7 +266,7 @@ msgstr "錯誤"
#: Mailman/Cgi/admin.py:96 Mailman/Cgi/admindb.py:137 Mailman/Cgi/confirm.py:81
#: Mailman/Cgi/create.py:51 Mailman/Cgi/edithtml.py:104
-#: Mailman/Cgi/listinfo.py:69 Mailman/Cgi/options.py:81
+#: Mailman/Cgi/listinfo.py:68 Mailman/Cgi/options.py:81
#: Mailman/Cgi/options.py:118 Mailman/Cgi/private.py:126
#: Mailman/Cgi/rmlist.py:49 Mailman/Cgi/roster.py:73
#: Mailman/Cgi/subscribe.py:82
@@ -279,7 +279,7 @@ msgid "Authorization failed."
msgstr "授權失敗"
#: Mailman/Cgi/admin.py:212 Mailman/Cgi/admindb.py:236
-#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:338
+#: Mailman/Cgi/edithtml.py:170 Mailman/Cgi/options.py:324
msgid "The form lifetime has expired. (request forgery check)"
msgstr ""
@@ -295,7 +295,7 @@ msgstr ""
"您必須自兩者中擇一使用,不然您的通信論壇基本上是無法使用的。"
#: Mailman/Cgi/admin.py:222 Mailman/Cgi/admin.py:230 Mailman/Cgi/admin.py:237
-#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:208
+#: Mailman/Cgi/admin.py:1648 Mailman/Gui/GUIBase.py:209
msgid "Warning: "
msgstr "警告:"
@@ -321,11 +321,11 @@ msgstr ""
msgid "%(hostname)s mailing lists - Admin Links"
msgstr "%(hostname)s 通信論壇 - 管理人網頁的連結"
-#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:122
+#: Mailman/Cgi/admin.py:294 Mailman/Cgi/listinfo.py:121
msgid "Welcome!"
msgstr "歡迎!"
-#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:125
+#: Mailman/Cgi/admin.py:297 Mailman/Cgi/listinfo.py:124
msgid "Mailman"
msgstr "郵差"
@@ -373,16 +373,16 @@ msgstr "通信論壇簡介網頁"
msgid "<p>(Send questions and comments to "
msgstr "<p>(將您的意見或疑問寄給 "
-#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:157 cron/mailpasswds:216
+#: Mailman/Cgi/admin.py:335 Mailman/Cgi/listinfo.py:156 cron/mailpasswds:216
msgid "List"
msgstr "論壇"
#: Mailman/Cgi/admin.py:336 Mailman/Cgi/admin.py:604
-#: Mailman/Cgi/listinfo.py:158
+#: Mailman/Cgi/listinfo.py:157
msgid "Description"
msgstr "說明"
-#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:164 bin/list_lists:130
+#: Mailman/Cgi/admin.py:342 Mailman/Cgi/listinfo.py:163 bin/list_lists:130
msgid "[no description available]"
msgstr "〔沒有說明〕"
@@ -530,7 +530,7 @@ msgstr "主題名稱"
msgid "Regexp:"
msgstr "正則表示式:"
-#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1139
+#: Mailman/Cgi/admin.py:755 Mailman/Cgi/options.py:1141
msgid "Description:"
msgstr "說明"
@@ -689,7 +689,7 @@ msgid "nodupes"
msgstr "不要重複信"
#: Mailman/Cgi/admin.py:1033 Mailman/Cgi/admin.py:1099
-#: Mailman/Cgi/options.py:382
+#: Mailman/Cgi/options.py:384
msgid "digest"
msgstr "文摘"
@@ -721,7 +721,7 @@ msgstr "退信"
msgid "notmetoo"
msgstr "不收自己寄的信"
-#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:380
+#: Mailman/Cgi/admin.py:1075 Mailman/Cgi/options.py:382
msgid "nomail"
msgstr "不收信件"
@@ -832,7 +832,7 @@ msgstr "立刻讓這些朋友訂閱還是邀請他們?"
msgid "Invite"
msgstr "邀請"
-#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:200
+#: Mailman/Cgi/admin.py:1220 Mailman/Cgi/listinfo.py:199
msgid "Subscribe"
msgstr "訂閱"
@@ -1051,7 +1051,7 @@ msgstr "不良或不正確的 email 地址"
msgid "Hostile address (illegal characters)"
msgstr "爛地址(含有不合法字元)"
-#: Mailman/Cgi/admin.py:1495 bin/add_members:150 bin/clone_member:136
+#: Mailman/Cgi/admin.py:1495 bin/add_members:175 bin/clone_member:136
#: bin/sync_members:268
msgid "Banned address (matched %(pattern)s)"
msgstr ""
@@ -1690,8 +1690,8 @@ msgstr ""
"\n"
" <p>您也可以按 <em>取消退訂</em> 按鈕來取消這個退訂要求。"
-#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:849
-#: Mailman/Cgi/options.py:996 Mailman/Cgi/options.py:1006
+#: Mailman/Cgi/confirm.py:503 Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:998 Mailman/Cgi/options.py:1008
msgid "Unsubscribe"
msgstr "退訂"
@@ -2314,17 +2314,17 @@ msgstr "HTML 沒有變動。"
msgid "HTML successfully updated."
msgstr "HTML 已更新成功。"
-#: Mailman/Cgi/listinfo.py:90
+#: Mailman/Cgi/listinfo.py:89
msgid "%(hostname)s Mailing Lists"
msgstr "%(hostname)s 郵遞論壇"
-#: Mailman/Cgi/listinfo.py:128
+#: Mailman/Cgi/listinfo.py:127
msgid ""
"<p>There currently are no publicly-advertised\n"
" %(mailmanlink)s mailing lists on %(hostname)s."
msgstr "<p> %(hostname)s 上現在沒有公告出來的 %(mailmanlink)s 郵遞論壇"
-#: Mailman/Cgi/listinfo.py:132
+#: Mailman/Cgi/listinfo.py:131
msgid ""
"<p>Below is a listing of all the public mailing lists on\n"
" %(hostname)s. Click on a list name to get more information "
@@ -2337,11 +2337,11 @@ msgstr ""
"點取論壇名稱以取得該論壇更進一步的資訊,\n"
"或訂閱、退訂及變更您訂閱的偏好。"
-#: Mailman/Cgi/listinfo.py:138
+#: Mailman/Cgi/listinfo.py:137
msgid "right"
msgstr "對的"
-#: Mailman/Cgi/listinfo.py:141
+#: Mailman/Cgi/listinfo.py:140
msgid ""
" To visit the general information page for an unadvertised list,\n"
" open a URL similar to this one, but with a '/' and the %(adj)s\n"
@@ -2352,11 +2352,11 @@ msgstr ""
"壇名稱的網址。\n"
" <p>論壇管理人,您可以觀看"
-#: Mailman/Cgi/listinfo.py:146
+#: Mailman/Cgi/listinfo.py:145
msgid "the list admin overview page"
msgstr "論壇管理的概述網頁"
-#: Mailman/Cgi/listinfo.py:147
+#: Mailman/Cgi/listinfo.py:146
msgid ""
" to find the management interface for your list.\n"
" <p>If you are having trouble using the lists, please contact "
@@ -2364,11 +2364,11 @@ msgstr ""
"來找到您的論壇的管理介面。\n"
" <p>如果您對於使用論壇有困難,請聯絡 "
-#: Mailman/Cgi/listinfo.py:236
+#: Mailman/Cgi/listinfo.py:235
msgid "Edit Options"
msgstr "修改設定"
-#: Mailman/Cgi/listinfo.py:243 Mailman/Cgi/options.py:961
+#: Mailman/Cgi/listinfo.py:242 Mailman/Cgi/options.py:963
#: Mailman/Cgi/roster.py:130
msgid "View this page in"
msgstr "選擇本頁所用的語文:"
@@ -2390,75 +2390,75 @@ msgstr "沒有給定地址"
msgid "Illegal Email Address: %(safeuser)s"
msgstr "非法的 email 地址: %(safeuser)s"
-#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:247
-#: Mailman/Cgi/options.py:271 Mailman/Cgi/private.py:163
+#: Mailman/Cgi/options.py:179 Mailman/Cgi/options.py:233
+#: Mailman/Cgi/options.py:257 Mailman/Cgi/private.py:163
msgid "No such member: %(safeuser)s."
msgstr "沒有此訂戶:%(safeuser)s。"
-#: Mailman/Cgi/options.py:218
+#: Mailman/Cgi/options.py:204
#, fuzzy
msgid "If you are a list member, a confirmation email has been sent."
msgstr "確認信已寄出。"
-#: Mailman/Cgi/options.py:219
+#: Mailman/Cgi/options.py:205
#, fuzzy
msgid ""
"If you are a list member, your unsubscription request has been\n"
" forwarded to the list administrator for approval."
msgstr "您的退訂要求已轉送給論壇管理人等待核准。"
-#: Mailman/Cgi/options.py:261
+#: Mailman/Cgi/options.py:247
#, fuzzy
msgid ""
"If you are a list member,\n"
" your password has been emailed to you."
msgstr "您的密碼提醒信件已經寄給您"
-#: Mailman/Cgi/options.py:304
+#: Mailman/Cgi/options.py:290
msgid "Authentication failed."
msgstr "認證失敗"
-#: Mailman/Cgi/options.py:353
+#: Mailman/Cgi/options.py:355
msgid "A reminder of your password has been emailed to you."
msgstr "您的密碼提醒信件已經寄給您"
-#: Mailman/Cgi/options.py:360
+#: Mailman/Cgi/options.py:362
msgid ""
"The list administrator may not view the other\n"
" subscriptions for this user."
msgstr ""
-#: Mailman/Cgi/options.py:361 Mailman/Cgi/options.py:410
-#: Mailman/Cgi/options.py:538 Mailman/Cgi/options.py:761
+#: Mailman/Cgi/options.py:363 Mailman/Cgi/options.py:412
+#: Mailman/Cgi/options.py:540 Mailman/Cgi/options.py:763
msgid "Note: "
msgstr ""
-#: Mailman/Cgi/options.py:366
+#: Mailman/Cgi/options.py:368
msgid "List subscriptions for %(safeuser)s on %(hostname)s"
msgstr "列出 %(safeuser)s 在 %(hostname)s 上的訂閱清單"
-#: Mailman/Cgi/options.py:369
+#: Mailman/Cgi/options.py:371
msgid ""
"Click on a link to visit your options page for the\n"
" requested mailing list."
msgstr "點擊任一連結即可前往您在該論壇的選項網頁。"
-#: Mailman/Cgi/options.py:407
+#: Mailman/Cgi/options.py:409
msgid ""
"The list administrator may not change the names\n"
" or addresses for this user's other subscriptions. However, the\n"
" subscription for this mailing list has been changed."
msgstr ""
-#: Mailman/Cgi/options.py:430
+#: Mailman/Cgi/options.py:432
msgid "Addresses did not match!"
msgstr "地址不符!"
-#: Mailman/Cgi/options.py:435
+#: Mailman/Cgi/options.py:437
msgid "You are already using that email address"
msgstr "您本來就在用那個 email 地址"
-#: Mailman/Cgi/options.py:447
+#: Mailman/Cgi/options.py:449
msgid ""
"The new address you requested %(newaddr)s is already a member of the\n"
"%(listname)s mailing list, however you have also requested a global change "
@@ -2470,31 +2470,31 @@ msgstr ""
"求了整批變更地址。\n"
"在確認之後,所有含有 %(safeuser)s 的郵遞論壇都會變動。"
-#: Mailman/Cgi/options.py:456
+#: Mailman/Cgi/options.py:458
msgid "The new address is already a member: %(newaddr)s"
msgstr "新地址已經是訂戶: %(newaddr)s"
-#: Mailman/Cgi/options.py:462
+#: Mailman/Cgi/options.py:464
msgid "Addresses may not be blank"
msgstr "地址欄不可留空"
-#: Mailman/Cgi/options.py:476
+#: Mailman/Cgi/options.py:478
msgid "A confirmation message has been sent to %(newaddr)s. "
msgstr "已經寄確認信到 %(newaddr)s。"
-#: Mailman/Cgi/options.py:485
+#: Mailman/Cgi/options.py:487
msgid "Bad email address provided"
msgstr "提供的 email 地址不正確"
-#: Mailman/Cgi/options.py:487
+#: Mailman/Cgi/options.py:489
msgid "Illegal email address provided"
msgstr "提供的 email 地址不合法"
-#: Mailman/Cgi/options.py:489
+#: Mailman/Cgi/options.py:491
msgid "%(newaddr)s is already a member of the list."
msgstr "%(newaddr)s 本來就是本論壇訂戶。"
-#: Mailman/Cgi/options.py:492
+#: Mailman/Cgi/options.py:494
#, fuzzy
msgid ""
"%(newaddr)s is banned from this list. If you\n"
@@ -2504,11 +2504,11 @@ msgstr ""
"你使用的這 email 目前被本論壇列入黑名單。\n"
"如果認為這項限制有問題的話,請與 %(owneraddr)s 壇主聯絡"
-#: Mailman/Cgi/options.py:503
+#: Mailman/Cgi/options.py:505
msgid "Member name successfully changed. "
msgstr "訂戶名稱已經變更成功。"
-#: Mailman/Cgi/options.py:513
+#: Mailman/Cgi/options.py:515
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2518,15 +2518,15 @@ msgstr ""
"因此您的訂閱選項並未設定,\n"
"但其他選項已經設定成功。"
-#: Mailman/Cgi/options.py:522
+#: Mailman/Cgi/options.py:524
msgid "Passwords may not be blank"
msgstr "密碼不可是空白"
-#: Mailman/Cgi/options.py:527
+#: Mailman/Cgi/options.py:529
msgid "Passwords did not match!"
msgstr "密碼不符"
-#: Mailman/Cgi/options.py:535
+#: Mailman/Cgi/options.py:537
#, fuzzy
msgid ""
"The list administrator may not change the\n"
@@ -2537,12 +2537,12 @@ msgstr ""
"因此您的訂閱選項並未設定,\n"
"但其他選項已經設定成功。"
-#: Mailman/Cgi/options.py:552 Mailman/Commands/cmd_password.py:83
+#: Mailman/Cgi/options.py:554 Mailman/Commands/cmd_password.py:83
#: Mailman/Commands/cmd_password.py:109
msgid "Password successfully changed."
msgstr "密碼已更新成功。"
-#: Mailman/Cgi/options.py:561
+#: Mailman/Cgi/options.py:563
msgid ""
"You must confirm your unsubscription request by turning\n"
" on the checkbox below the <em>Unsubscribe</em> button. You\n"
@@ -2551,11 +2551,11 @@ msgstr ""
"您還沒退訂唷!\n"
"您必須勾選 <em>退訂</em> 按鈕下面的方格以示確認您的退訂要求。"
-#: Mailman/Cgi/options.py:600
+#: Mailman/Cgi/options.py:602
msgid "Unsubscription results"
msgstr "退訂的結果"
-#: Mailman/Cgi/options.py:604
+#: Mailman/Cgi/options.py:606
msgid ""
"Your unsubscription request has been received and\n"
" forwarded on to the list moderators for approval. You will\n"
@@ -2565,7 +2565,7 @@ msgstr ""
"您的退訂要求已經收到了,並已轉給論壇主持人。\n"
"一旦論壇主持人作出決定,您就會收到通知。"
-#: Mailman/Cgi/options.py:609
+#: Mailman/Cgi/options.py:611
msgid ""
"You have been successfully unsubscribed from the\n"
" mailing list %(fqdn_listname)s. If you were receiving digest\n"
@@ -2578,7 +2578,7 @@ msgstr ""
"如果您原本訂的是文摘的話,可能還會收到一期文摘。\n"
"如果您有任何有關退訂的問題,請聯絡論壇擁有人 %(owneraddr)s。"
-#: Mailman/Cgi/options.py:758
+#: Mailman/Cgi/options.py:760
msgid ""
"The list administrator may not change the\n"
" options for this user's other subscriptions. However the\n"
@@ -2586,7 +2586,7 @@ msgid ""
" changed."
msgstr ""
-#: Mailman/Cgi/options.py:768
+#: Mailman/Cgi/options.py:770
msgid ""
"The list administrator has disabled digest delivery for\n"
" this list, so your delivery option has not been set. However "
@@ -2597,7 +2597,7 @@ msgstr ""
"因此您的訂閱選項並未設定,\n"
"但其他選項已經設定成功。"
-#: Mailman/Cgi/options.py:772
+#: Mailman/Cgi/options.py:774
msgid ""
"The list administrator has disabled non-digest delivery\n"
" for this list, so your delivery option has not been set. "
@@ -2608,63 +2608,63 @@ msgstr ""
"因此您的訂閱選項並未設定,\n"
"但其他選項已經設定成功。"
-#: Mailman/Cgi/options.py:776
+#: Mailman/Cgi/options.py:778
msgid "You have successfully set your options."
msgstr "您的選項已經設定成功。"
-#: Mailman/Cgi/options.py:779
+#: Mailman/Cgi/options.py:781
msgid "You may get one last digest."
msgstr "您可能還會收到最後一次的文摘。"
-#: Mailman/Cgi/options.py:851
+#: Mailman/Cgi/options.py:853
msgid "<em>Yes, I really want to unsubscribe</em>"
msgstr "<em>是的,我真的要退訂</em>"
-#: Mailman/Cgi/options.py:855
+#: Mailman/Cgi/options.py:857
msgid "Change My Password"
msgstr "變更我的密碼"
-#: Mailman/Cgi/options.py:858
+#: Mailman/Cgi/options.py:860
msgid "List my other subscriptions"
msgstr "列出我訂的其他論壇"
-#: Mailman/Cgi/options.py:865
+#: Mailman/Cgi/options.py:867
msgid "Email My Password To Me"
msgstr "把我的密碼寄給我"
-#: Mailman/Cgi/options.py:867
+#: Mailman/Cgi/options.py:869
msgid "password"
msgstr "密碼"
-#: Mailman/Cgi/options.py:869
+#: Mailman/Cgi/options.py:871
msgid "Log out"
msgstr "登出"
-#: Mailman/Cgi/options.py:871
+#: Mailman/Cgi/options.py:873
msgid "Submit My Changes"
msgstr "送出我的變更"
-#: Mailman/Cgi/options.py:883
+#: Mailman/Cgi/options.py:885
msgid "days"
msgstr "天"
-#: Mailman/Cgi/options.py:885
+#: Mailman/Cgi/options.py:887
msgid "day"
msgstr "天"
-#: Mailman/Cgi/options.py:886
+#: Mailman/Cgi/options.py:888
msgid "%(days)d %(units)s"
msgstr "%(days)d %(units)s"
-#: Mailman/Cgi/options.py:892
+#: Mailman/Cgi/options.py:894
msgid "Change My Address and Name"
msgstr "變更我的地址和名字"
-#: Mailman/Cgi/options.py:918
+#: Mailman/Cgi/options.py:920
msgid "<em>No topics defined</em>"
msgstr "<em>尚未定義任何標題</em>"
-#: Mailman/Cgi/options.py:926
+#: Mailman/Cgi/options.py:928
msgid ""
"\n"
"You are subscribed to this list with the case-preserved address\n"
@@ -2673,19 +2673,19 @@ msgstr ""
"\n"
"您以保留大寫字母的地址 <em>%(cpuser)s</em> 訂閱本論壇。"
-#: Mailman/Cgi/options.py:942
+#: Mailman/Cgi/options.py:944
msgid "%(realname)s list: member options login page"
msgstr "%(realname)s 的列表: 會員選項登入頁"
-#: Mailman/Cgi/options.py:943
+#: Mailman/Cgi/options.py:945
msgid "email address and "
msgstr "訂戶地址和"
-#: Mailman/Cgi/options.py:946
+#: Mailman/Cgi/options.py:948
msgid "%(realname)s list: member options for user %(safeuser)s"
msgstr "%(realname)s 的列表: %(safeuser)s 的訂戶選項。"
-#: Mailman/Cgi/options.py:972
+#: Mailman/Cgi/options.py:974
msgid ""
"In order to change your membership option, you must\n"
" first log in by giving your %(extra)smembership password in the section\n"
@@ -2710,19 +2710,19 @@ msgstr ""
" <p><strong><em>重要:</em></strong>從此以後您必需開啟瀏覽器的 cookies 功能,"
"不然您作的更動都將失效。"
-#: Mailman/Cgi/options.py:986
+#: Mailman/Cgi/options.py:988
msgid "Email address:"
msgstr "Email 地址:"
-#: Mailman/Cgi/options.py:990
+#: Mailman/Cgi/options.py:992
msgid "Password:"
msgstr "密碼: "
-#: Mailman/Cgi/options.py:992
+#: Mailman/Cgi/options.py:994
msgid "Log in"
msgstr "登入"
-#: Mailman/Cgi/options.py:1000
+#: Mailman/Cgi/options.py:1002
msgid ""
"By clicking on the <em>Unsubscribe</em> button, a\n"
" confirmation message will be emailed to you. This message will have a\n"
@@ -2734,37 +2734,37 @@ msgstr ""
"那封信會含有一個網址,您只要點擊就能完成退訂程序。您也可以用 email 確認;請閱"
"讀確認信中的指示。"
-#: Mailman/Cgi/options.py:1008
+#: Mailman/Cgi/options.py:1010
msgid "Password reminder"
msgstr "密碼提示信: "
-#: Mailman/Cgi/options.py:1012
+#: Mailman/Cgi/options.py:1014
msgid ""
"By clicking on the <em>Remind</em> button, your\n"
" password will be emailed to you."
msgstr "如果您點擊 <em>提醒</em> 按鈕,您的密碼會定時寄給您。"
-#: Mailman/Cgi/options.py:1015
+#: Mailman/Cgi/options.py:1017
msgid "Remind"
msgstr "提醒"
-#: Mailman/Cgi/options.py:1115 Mailman/ListAdmin.py:225
+#: Mailman/Cgi/options.py:1117 Mailman/ListAdmin.py:225
msgid "<missing>"
msgstr "<missing>"
-#: Mailman/Cgi/options.py:1126
+#: Mailman/Cgi/options.py:1128
msgid "Requested topic is not valid: %(topicname)s"
msgstr "要求的標題無效: %(topicname)s"
-#: Mailman/Cgi/options.py:1131
+#: Mailman/Cgi/options.py:1133
msgid "Topic filter details"
msgstr "標題過濾器明細"
-#: Mailman/Cgi/options.py:1134
+#: Mailman/Cgi/options.py:1136
msgid "Name:"
msgstr "名字:"
-#: Mailman/Cgi/options.py:1136
+#: Mailman/Cgi/options.py:1138
msgid "Pattern (as regexp):"
msgstr "規則(正規表示式):"
@@ -4578,11 +4578,11 @@ msgstr "已沒有待寄送的文摘。"
msgid "Invalid value for variable: %(property)s"
msgstr "不正確的設定: %(property)s"
-#: Mailman/Gui/GUIBase.py:177
+#: Mailman/Gui/GUIBase.py:178
msgid "Bad email address for option %(property)s: %(error)s"
msgstr "選項 %(property)s 內為錯誤的 Email 信箱: %(error)s"
-#: Mailman/Gui/GUIBase.py:203
+#: Mailman/Gui/GUIBase.py:204
msgid ""
"The following illegal substitution variables were\n"
" found in the <code>%(property)s</code> string:\n"
@@ -4595,7 +4595,7 @@ msgstr ""
"<code>%(bad)s</code>\n"
"<p>請先修復此問題,否則將無法正確進行您的論壇列表運作。"
-#: Mailman/Gui/GUIBase.py:217
+#: Mailman/Gui/GUIBase.py:218
#, fuzzy
msgid ""
"Your <code>%(property)s</code> string appeared to\n"
@@ -5458,7 +5458,17 @@ msgstr ""
" 與論壇名稱僅大小寫不同而已。\n"
" <p>"
-#: Mailman/Gui/General.py:570
+#: Mailman/Gui/General.py:566
+#, fuzzy
+msgid ""
+"<b>host_name</b> attribute not changed!\n"
+" It must be a valid domain name."
+msgstr ""
+"<p><b>正式名稱</b> 屬性未變更!\n"
+" 與論壇名稱僅大小寫不同而已。\n"
+" <p>"
+
+#: Mailman/Gui/General.py:578
msgid ""
"You cannot add a Reply-To: to an explicit\n"
" address if that address is blank. Resetting these values."
@@ -7534,39 +7544,39 @@ msgstr ""
msgid "Message rejected by filter rule match"
msgstr "訊息被過濾規則匹配程式所拒絕"
-#: Mailman/Handlers/ToDigest.py:174
+#: Mailman/Handlers/ToDigest.py:173
msgid "%(realname)s Digest, Vol %(volume)d, Issue %(issue)d"
msgstr "%(realname)s 摘要、容量 %(volume)d、條目 %(issue)d"
-#: Mailman/Handlers/ToDigest.py:220
+#: Mailman/Handlers/ToDigest.py:219
msgid "digest header"
msgstr "摘要標題"
-#: Mailman/Handlers/ToDigest.py:223
+#: Mailman/Handlers/ToDigest.py:222
msgid "Digest Header"
msgstr "摘要標題"
-#: Mailman/Handlers/ToDigest.py:236
+#: Mailman/Handlers/ToDigest.py:235
msgid "Today's Topics:\n"
msgstr "今日主題:\n"
-#: Mailman/Handlers/ToDigest.py:316
+#: Mailman/Handlers/ToDigest.py:315
msgid "Today's Topics (%(msgcount)d messages)"
msgstr "今日主題 (%(msgcount)d 條訊息)"
-#: Mailman/Handlers/ToDigest.py:342
+#: Mailman/Handlers/ToDigest.py:341
msgid "[Message discarded by content filter]"
msgstr "[訊息被內容過濾程式所丟棄]"
-#: Mailman/Handlers/ToDigest.py:370
+#: Mailman/Handlers/ToDigest.py:369
msgid "digest footer"
msgstr "摘要註腳"
-#: Mailman/Handlers/ToDigest.py:373 Mailman/Handlers/ToDigest.py:381
+#: Mailman/Handlers/ToDigest.py:372 Mailman/Handlers/ToDigest.py:380
msgid "Digest Footer"
msgstr "摘要註腳"
-#: Mailman/Handlers/ToDigest.py:388
+#: Mailman/Handlers/ToDigest.py:387
msgid "End of "
msgstr "結尾: "
@@ -7715,41 +7725,41 @@ msgstr "請確認退出 %(listname)s 論壇"
msgid "Your confirmation is required to leave the %(listname)s mailing list"
msgstr "請確認加入 %(listname)s 論壇"
-#: Mailman/MailList.py:929 Mailman/MailList.py:1405
+#: Mailman/MailList.py:937 Mailman/MailList.py:1413
msgid " from %(remote)s"
msgstr " 寄自 %(remote)s"
-#: Mailman/MailList.py:973
+#: Mailman/MailList.py:981
#, fuzzy
msgid "subscriptions to %(realname)s require moderator approval"
msgstr "%(realname)s 的訂閱需要壇主核准"
-#: Mailman/MailList.py:1048 bin/add_members:253
+#: Mailman/MailList.py:1056 bin/add_members:299
#, fuzzy
msgid "%(realname)s subscription notification"
msgstr "%(realname)s 訂閱通知"
-#: Mailman/MailList.py:1067
+#: Mailman/MailList.py:1075
#, fuzzy
msgid "unsubscriptions require moderator approval"
msgstr "%s 的訂閱需要壇主核准"
-#: Mailman/MailList.py:1088
+#: Mailman/MailList.py:1096
#, fuzzy
msgid "%(realname)s unsubscribe notification"
msgstr "%s 退訂通知"
-#: Mailman/MailList.py:1249
+#: Mailman/MailList.py:1257
#, fuzzy
msgid "%(realname)s address change notification"
msgstr "%s 退訂通知"
-#: Mailman/MailList.py:1314
+#: Mailman/MailList.py:1322
#, fuzzy
msgid "subscriptions to %(name)s require administrator approval"
msgstr "%s 的訂閱需要壇主核准"
-#: Mailman/MailList.py:1579
+#: Mailman/MailList.py:1587
msgid "Last autoresponse notification for today"
msgstr ""
@@ -7919,7 +7929,7 @@ msgid ""
msgstr ""
"%(wday)s %(mon)s %(day)2i %(hh)02i:%(mm)02i:%(ss)02i %(tzname)s %(year)04i"
-#: bin/add_members:26
+#: bin/add_members:22
msgid ""
"Add members to a list from the command line.\n"
"\n"
@@ -7932,29 +7942,43 @@ msgid ""
" -r file\n"
" A file containing addresses of the members to be added, one\n"
" address per line. This list of people become non-digest\n"
-" members. If file is `-', read addresses from stdin. Note that\n"
-" -n/--non-digest-members-file are deprecated synonyms for this "
-"option.\n"
+" members. If file is `-', read addresses from stdin.\n"
"\n"
" --digest-members-file=file\n"
" -d file\n"
" Similar to above, but these people become digest members.\n"
"\n"
+" --invite\n"
+" -i\n"
+" Specify this if you only want to invite the users to a list\n"
+" instead of subscribing them.\n"
+"\n"
+" --invite-msg-file=file\n"
+" -m file\n"
+" This will prepend the message in the file to the invite email that\n"
+" gets generated when --invite is set.\n"
+"\n"
" --welcome-msg=<y|n>\n"
" -w <y|n>\n"
" Set whether or not to send the list members a welcome message,\n"
-" overriding whatever the list's `send_welcome_msg' setting is.\n"
+" overriding whatever the list's `send_welcome_msg' setting is. This\n"
+" is ignored and the list's setting at the time of acceptance is used\n"
+" if --invite is set.\n"
"\n"
" --admin-notify=<y|n>\n"
" -a <y|n>\n"
" Set whether or not to send the list administrators a notification "
"on\n"
" the success/failure of these subscriptions, overriding whatever the\n"
-" list's `admin_notify_mchanges' setting is.\n"
+" list's `admin_notify_mchanges' setting is. This is ignored and the\n"
+" list's setting at the time of acceptance is used if --invite is "
+"set.\n"
"\n"
" --nomail\n"
" -n\n"
-" Set the newly added members mail delivery to disabled by admin.\n"
+" Set the newly added members mail delivery to disabled by admin. "
+"This\n"
+" is ignored if --invite is set.\n"
"\n"
" --help\n"
" -h\n"
@@ -7968,50 +7992,59 @@ msgid ""
"files can be `-'.\n"
msgstr ""
-#: bin/add_members:147
+#: bin/add_members:162 bin/add_members:172
#, fuzzy
msgid "Already a member: %(member)s"
msgstr "已是會員: %(member)s"
-#: bin/add_members:153
+#: bin/add_members:178
#, fuzzy
msgid "Bad/Invalid email address: blank line"
msgstr "誤填或不正確 的 email 地址:空行"
-#: bin/add_members:155
+#: bin/add_members:180
#, fuzzy
msgid "Bad/Invalid email address: %(member)s"
msgstr "誤填或不正確 的 email 地址: %(member)s"
-#: bin/add_members:157
+#: bin/add_members:182
#, fuzzy
msgid "Hostile address (illegal characters): %(member)s"
msgstr "反對地址(不正確的字元)"
-#: bin/add_members:159
+#: bin/add_members:185
+#, fuzzy
+msgid "Invited: %(member)s"
+msgstr "已訂閱者: %(member)s"
+
+#: bin/add_members:187
msgid "Subscribed: %(member)s"
msgstr "已訂閱者: %(member)s"
-#: bin/add_members:200
+#: bin/add_members:237
msgid "Bad argument to -w/--welcome-msg: %(arg)s"
msgstr ""
-#: bin/add_members:207
+#: bin/add_members:244
msgid "Bad argument to -a/--admin-notify: %(arg)s"
msgstr ""
-#: bin/add_members:215
+#: bin/add_members:252
msgid "Cannot read both digest and normal members from standard input."
msgstr ""
-#: bin/add_members:221 bin/config_list:110 bin/export.py:271 bin/find_member:97
+#: bin/add_members:256
+msgid "Setting invite-msg-file requires --invite."
+msgstr ""
+
+#: bin/add_members:261 bin/config_list:110 bin/export.py:271 bin/find_member:97
#: bin/inject:91 bin/list_admins:90 bin/list_members:252 bin/sync_members:222
#: cron/bumpdigests:86
#, fuzzy
msgid "No such list: %(listname)s"
msgstr "無此論壇 \"%s\": %s\n"
-#: bin/add_members:241 bin/change_pw:159 bin/check_db:114 bin/discard:83
+#: bin/add_members:285 bin/change_pw:159 bin/check_db:114 bin/discard:83
#: bin/sync_members:244 bin/update:302 bin/update:323 bin/update:577
#: cron/bumpdigests:78
#, fuzzy