Aaron Crosman wrote: > >I'm quite sure it's not a template. I have checked, double check, and >now triple checked. I'm really sure. None of those other directories >exist except lists/<list name>/es/ and that just contains a >"subscriback.txt" for the replacement welcome message.
You are correct. I think I've discovered the problem. The 2.1.4 version of messages/es/LC_MESSAGES/mailman.po contains: #: Mailman/Cgi/options.py:767 msgid "" "\n" "You are subscribed to this list with the case-preserved address\n" "<em>%(cpuser)s</em>." msgstr "" "\n" "Est� suscrito a la lista con la direcci�n <em>%s</em> respetando may�sculas " "y min�sculas." This is wrong. It was fixed in 2.1.5. The last 2 lines should be "Est� suscrito a la lista con la direcci�n <em>%(cpuser)s</em> respetando " "may�sculas y min�sculas." The crucial difference is %(cpuser)s, not %s After fixing the file, you need to update the .mo file with bin/msgfmt.py messages/es/LC_MESSAGES/mailman.po BTW, I think you'll find that your test list has the same problem if you visit the options page as a subscriber. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
