diff options
| author | bwarsaw | 2002-05-28 05:18:00 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-05-28 05:18:00 +0000 |
| commit | 65b188c2f1d2fe5c0d2c7e084e7f4d6e6e9e0e55 (patch) | |
| tree | beb2ef908a7f649053ad0bab65d51ebf08102ae8 /Mailman/HTMLFormatter.py | |
| parent | b1cb8ff30fcbfd9e2b29c61860f35b033c131325 (diff) | |
| download | mailman-65b188c2f1d2fe5c0d2c7e084e7f4d6e6e9e0e55.tar.gz mailman-65b188c2f1d2fe5c0d2c7e084e7f4d6e6e9e0e55.tar.zst mailman-65b188c2f1d2fe5c0d2c7e084e7f4d6e6e9e0e55.zip | |
Diffstat (limited to 'Mailman/HTMLFormatter.py')
| -rw-r--r-- | Mailman/HTMLFormatter.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Mailman/HTMLFormatter.py b/Mailman/HTMLFormatter.py index e297a92c9..27c789b76 100644 --- a/Mailman/HTMLFormatter.py +++ b/Mailman/HTMLFormatter.py @@ -183,18 +183,20 @@ class HTMLFormatter: if self.subscribe_policy == 1: msg += _('''You will be sent email requesting confirmation, to prevent others from gratuitously subscribing you.''') - if self.subscribe_policy == 2: + elif self.subscribe_policy == 2: msg += _("""This is a closed list, which means your subscription will be held for approval. You will be notified of the list moderator's decision by email.""") also = _('also ') - if self.subscribe_policy == 3: + elif self.subscribe_policy == 3: msg += _("""You will be sent email requesting confirmation, to prevent others from gratuitously subscribing you. Once confirmation is received, your request will be held for approval by the list moderator. You will be notified of the moderator's decision by email.""") also = _("also ") + if msg: + msg += ' ' if self.private_roster == 1: msg += _('''This is %(also)sa private list, which means that the list of members is not available to non-members.''') |
