aboutsummaryrefslogtreecommitdiffstats
path: root/actionmailer/lib
diff options
context:
space:
mode:
authorJurriaan Pruis <email@jurriaanpruis.nl>2012-04-03 15:16:09 +0200
committerJurriaan Pruis <email@jurriaanpruis.nl>2012-04-03 15:16:09 +0200
commit2d8396fc9fbea9189e9e945e41e643925da5b2cb (patch)
tree9185737cf020abf95ab2bad80c1bdc281c441808 /actionmailer/lib
parent0cc6c5fec235cca6d7eb85d4f849536db8566e93 (diff)
downloadrails-2d8396fc9fbea9189e9e945e41e643925da5b2cb.tar.gz
rails-2d8396fc9fbea9189e9e945e41e643925da5b2cb.tar.bz2
rails-2d8396fc9fbea9189e9e945e41e643925da5b2cb.zip
Updated/changed useless tr/gsubs
Diffstat (limited to 'actionmailer/lib')
-rw-r--r--actionmailer/lib/action_mailer/base.rb2
-rw-r--r--actionmailer/lib/rails/generators/mailer/templates/mailer.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/actionmailer/lib/action_mailer/base.rb b/actionmailer/lib/action_mailer/base.rb
index 4af2d0a4a8..c508512ff6 100644
--- a/actionmailer/lib/action_mailer/base.rb
+++ b/actionmailer/lib/action_mailer/base.rb
@@ -696,7 +696,7 @@ module ActionMailer #:nodoc:
# If it does not find a translation for the +subject+ under the specified scope it will default to a
# humanized version of the <tt>action_name</tt>.
def default_i18n_subject #:nodoc:
- mailer_scope = self.class.mailer_name.gsub('/', '.')
+ mailer_scope = self.class.mailer_name.tr('/', '.')
I18n.t(:subject, :scope => [mailer_scope, action_name], :default => action_name.humanize)
end
diff --git a/actionmailer/lib/rails/generators/mailer/templates/mailer.rb b/actionmailer/lib/rails/generators/mailer/templates/mailer.rb
index f6ed7cf8ac..edcfb4233d 100644
--- a/actionmailer/lib/rails/generators/mailer/templates/mailer.rb
+++ b/actionmailer/lib/rails/generators/mailer/templates/mailer.rb
@@ -6,7 +6,7 @@ class <%= class_name %> < ActionMailer::Base
# Subject can be set in your I18n file at config/locales/en.yml
# with the following lookup:
#
- # en.<%= file_path.gsub("/",".") %>.<%= action %>.subject
+ # en.<%= file_path.tr("/",".") %>.<%= action %>.subject
#
def <%= action %>
@greeting = "Hi"