diff -r 0e1fcd57f95d -r fe49720e67bf scripts/mails.py --- a/scripts/mails.py Thu Sep 08 17:54:33 2011 +0530 +++ b/scripts/mails.py Sun Sep 11 16:34:54 2011 +0530 @@ -17,10 +17,10 @@ DEF_REMAINDER_REGISTRATION_PAGE_SUBJECT = ugettext( - 'SciPy.in 2010: Registration updates required for confirmation') + 'SciPy.in 2011: Registration updates required for confirmation') DEF_REMAINDER_ACCO_CONTACT_SUBJECT = ugettext( - 'SciPy.in 2010: Contact details, registration page and other updates') + 'SciPy.in 2011: Contact details, registration page and other updates') def speaker_accepted(): @@ -33,7 +33,7 @@ template = 'notifications/speaker_accepted_mail.html' for talk in talks: - subject = 'Your talk has been selected for SciPy.in 2010!' + subject = 'Your talk has been selected for SciPy.in 2011!' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username, 'title': talk.title}) @@ -52,7 +52,7 @@ template = 'notifications/speaker_sponsorship_mail.html' for talk in talks: - subject = 'Details regarding your travel and accommodation for SciPy.in 2010' + subject = 'Details regarding your travel and accommodation for SciPy.in 2011' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username, 'title': talk.title}) @@ -86,7 +86,7 @@ template = 'notifications/sprints_about_mail.html' for reg in regs: - subject = 'SciPy.in 2010: Details of the individual events' + subject = 'SciPy.in 2011: Details of the individual events' message = loader.render_to_string( template, dictionary={'name': reg.registrant.username}) @@ -104,7 +104,7 @@ template = 'notifications/last_day_mail.html' for reg in regs: - subject = 'SciPy.in 2010: Schedule and other details' + subject = 'SciPy.in 2011: Schedule and other details' message = loader.render_to_string( template, dictionary={'name': reg.registrant.username}) @@ -121,7 +121,7 @@ template = 'notifications/speaker_confirmation_mail.html' for talk in talks: - subject = 'SciPy.in 2010: Requesting for confirmation of your talk' + subject = 'SciPy.in 2011: Requesting for confirmation of your talk' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username, 'title': talk.title}) @@ -138,7 +138,7 @@ template = 'notifications/proceedings_detail_mail.html' for talk in talks: - subject = 'SciPy.in 2010 Proceedings' + subject = 'SciPy.in 2011 Proceedings' message = loader.render_to_string( template, dictionary={'name': talk.speaker.username})