diff --git a/app/controllers/admin/mailer_controller.rb b/app/controllers/admin/mailer_controller.rb
index bfad8ab3c3cbf1d51bace89bb40584cda8d0346b..2352e1892047cff8e94dcbde3ad4f5c65d14bf11 100644
--- a/app/controllers/admin/mailer_controller.rb
+++ b/app/controllers/admin/mailer_controller.rb
@@ -22,7 +22,7 @@ class Admin::MailerController < ApplicationController
       render :file => 'notify/note_wall_email', :layout => 'notify'
     end
   rescue
-    render :text => "Preview not avaialble"
+    render :text => "Preview not available"
   end
 
   def preview_user_new
@@ -31,7 +31,7 @@ class Admin::MailerController < ApplicationController
 
     render :file => 'notify/new_user_email', :layout => 'notify'
   rescue
-    render :text => "Preview not avaialble"
+    render :text => "Preview not available"
   end
 
   def preview_issue_new
@@ -40,6 +40,6 @@ class Admin::MailerController < ApplicationController
     @project = @issue.project
     render :file => 'notify/new_issue_email', :layout => 'notify'
   rescue
-    render :text => "Preview not avaialble"
+    render :text => "Preview not available"
   end
 end