diff options
| -rw-r--r-- | Mailman/Cgi/create.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py index 359a41c4f..3c7ff8a85 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -124,8 +124,13 @@ def process_request(doc, cgidata): _('Initial list passwords do not match')) return if not password: - request_creation(doc, cgidata, - _('The list password cannot be empty')) + request_creation( + doc, cgidata, + # The little <!-- ignore --> tag is used so that this string + # differs from the one in bin/newlist. The former is destined + # for the web while the latter is destined for email, so they + # must be different entries in the message catalog. + _('The list password cannot be empty<!-- ignore -->')) return # The authorization password must be non-empty, and it must match either # the list creation password or the site admin password |
