src/cm/views/followup.py
changeset 170 31288d47e729
parent 143 3c21b9097908
child 195 b58d55229bdf
--- a/src/cm/views/followup.py	Fri Feb 12 13:47:47 2010 +0100
+++ b/src/cm/views/followup.py	Fri Feb 12 15:54:48 2010 +0100
@@ -49,13 +49,13 @@
     try:
         notification = Notification.objects.get(adminkey=adminkey)
     except Notification.DoesNotExist:        
-        display_message(request, _(u"This notification has already been desactivated."))
+        display_message(request, _(u"This notification has already been deactivated."))
         return HttpResponseRedirect(reverse('index'))
     
     if request.method == 'POST':
         if request.POST['adminkey'] == adminkey:
             notification.desactivate()
-            display_message(request, _(u"Notification desactivated."))                
+            display_message(request, _(u"Notification deactivated."))                
             return HttpResponseRedirect(reverse('index'))
     return render_to_response('site/notifications_desactivate.html', 
                               {'notification' : notification,