summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2001-08-30 03:46:32 +0000
committerbwarsaw2001-08-30 03:46:32 +0000
commit6e2cb33c05b38387ae7c4f642c86d59019440681 (patch)
treea58676a2041e5ff2eebb1ddd8d212dd4d15db351
parent422651c946f1f56f39d99a5d123a871c535b7994 (diff)
downloadmailman-6e2cb33c05b38387ae7c4f642c86d59019440681.tar.gz
mailman-6e2cb33c05b38387ae7c4f642c86d59019440681.tar.zst
mailman-6e2cb33c05b38387ae7c4f642c86d59019440681.zip
request_deletion(): Fixed missing markup. Caught by Szilard Vizi.
-rw-r--r--Mailman/Cgi/rmlist.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/rmlist.py b/Mailman/Cgi/rmlist.py
index f8af31473..87e725585 100644
--- a/Mailman/Cgi/rmlist.py
+++ b/Mailman/Cgi/rmlist.py
@@ -211,7 +211,7 @@ def request_deletion(doc, mlist, errmsg=None):
ftable.AddCellInfo(ftable.GetCurrentRowIndex(), 1, bgcolor=GREY)
ftable.AddRow([Label(_('Also delete archives?')),
- RadioButtonArray('delarchives', ('No', 'Yes'),
+ RadioButtonArray('delarchives', (_('No'), _('Yes')),
checked=0, values=(0, 1))])
ftable.AddCellInfo(ftable.GetCurrentRowIndex(), 0, bgcolor=GREY)
ftable.AddCellInfo(ftable.GetCurrentRowIndex(), 1, bgcolor=GREY)