From 30ef89f5b06bccab6e17960f38d2bebdeebe7397 Mon Sep 17 00:00:00 2001 From: bwarsaw Date: Wed, 7 Nov 2001 00:39:13 +0000 Subject: show_post_requests(): We have to translate the `reason' we get out of the admin database, otherwise it won't be in the list's preferred language. --- Mailman/Cgi/admindb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailman/Cgi/admindb.py b/Mailman/Cgi/admindb.py index 26418565f..26b3f77df 100644 --- a/Mailman/Cgi/admindb.py +++ b/Mailman/Cgi/admindb.py @@ -290,7 +290,7 @@ def show_post_requests(mlist, id, info, total, count, form): t.AddCellInfo(row, col-1, align='right') t.AddRow([Bold(_('Subject:')), cgi.escape(subject)]) t.AddCellInfo(row+1, col-1, align='right') - t.AddRow([Bold(_('Reason:')), reason]) + t.AddRow([Bold(_('Reason:')), _(reason)]) t.AddCellInfo(row+2, col-1, align='right') # We can't use a RadioButtonArray here because horizontal placement can be # confusing to the user and vertical placement takes up too much -- cgit v1.3.1