Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-06-26 20:15:39 +0400
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-06-26 20:15:39 +0400
commitd92446df1fdba87101c92c90b1c34eb2f1eebef4 (patch)
tree8af07e3e9cda074b2033b78e54c19d09054bb530
parent0321a3c9b404b4c1a68a92a5a2bdc4d07ed7a527 (diff)
parent69ba86e8871c6d3ad118d0162b64f648d33c281a (diff)
Merge pull request #982 from JamesEarlDouglas/mailer-controller-typo
fix typo: 'avaialble' -> 'available'
-rw-r--r--app/controllers/admin/mailer_controller.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/controllers/admin/mailer_controller.rb b/app/controllers/admin/mailer_controller.rb
index bfad8ab3c3c..2352e189204 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