diff options
| author | bwarsaw | 2002-08-22 19:33:28 +0000 |
|---|---|---|
| committer | bwarsaw | 2002-08-22 19:33:28 +0000 |
| commit | cbd71d084191c30a868a5116509f2d9a0deb6b49 (patch) | |
| tree | b266daa1a0238720991ed5a37898b5490728281e /Mailman/Cgi/confirm.py | |
| parent | 412b51277236cf28bd0bc3ee14a8ac305c0347b7 (diff) | |
| download | mailman-cbd71d084191c30a868a5116509f2d9a0deb6b49.tar.gz mailman-cbd71d084191c30a868a5116509f2d9a0deb6b49.tar.zst mailman-cbd71d084191c30a868a5116509f2d9a0deb6b49.zip | |
Diffstat (limited to 'Mailman/Cgi/confirm.py')
| -rw-r--r-- | Mailman/Cgi/confirm.py | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/Mailman/Cgi/confirm.py b/Mailman/Cgi/confirm.py index 5c8327aea..8fa877975 100644 --- a/Mailman/Cgi/confirm.py +++ b/Mailman/Cgi/confirm.py @@ -235,17 +235,18 @@ def subscription_prompt(mlist, doc, cookie, userdesc): result = _("""Your confirmation is required in order to continue with the subscription request to the mailing list <em>%(listname)s</em>. Your subscription settings are shown below; make any necessary changes - and hit <em>Subscribe</em> to complete the confirmation process. Once - you've confirmed your subscription request, the moderator must approve - or reject your membership request. You will receive notice of their - decision. + and hit <em>Subscribe to list ...</em> to complete the confirmation + process. Once you've confirmed your subscription request, the + moderator must approve or reject your membership request. You will + receive notice of their decision. <p>Note: your password will be emailed to you once your subscription is confirmed. You can change it by visiting your personal options page. - <p>Or you can hit <em>Cancel and discard</em> now to cancel this - subscription request.""") + '<p><hr>' + <p>Or, if you've changed your mind and do not want to subscribe to + this mailing list, you can hit <em>Cancel my subscription + request</em>.""") + '<p><hr>' table.AddRow([result]) table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2) @@ -272,8 +273,10 @@ def subscription_prompt(mlist, doc, cookie, userdesc): SelectOptions('language', langs, values, selected)]) table.AddRow([Hidden('cookie', cookie)]) table.AddCellInfo(table.GetCurrentRowIndex(), 0, colspan=2) - table.AddRow([Label(SubmitButton('submit', _('Subscribe'))), - SubmitButton('cancel', _('Cancel and discard'))]) + table.AddRow([ + Label(SubmitButton('cancel', _('Cancel my subscription request'))), + SubmitButton('submit', _('Subscribe to list %(listname)s')) + ]) form.AddItem(table) doc.AddItem(form) |
