Skip to content

Commit

Permalink
Correct ActionMailer subject i18n lookup scope.
Browse files Browse the repository at this point in the history
The :actionmailer i18n scope part is not used and according to #2542 the implementation is correct.
  • Loading branch information
Odaeus committed Oct 20, 2011
1 parent ee1223c commit 66880cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actionmailer/lib/action_mailer/base.rb
Expand Up @@ -524,7 +524,7 @@ def attachments
# #
# * <tt>:subject</tt> - The subject of the message, if this is omitted, Action Mailer will # * <tt>:subject</tt> - The subject of the message, if this is omitted, Action Mailer will
# ask the Rails I18n class for a translated <tt>:subject</tt> in the scope of # ask the Rails I18n class for a translated <tt>:subject</tt> in the scope of
# <tt>[:actionmailer, mailer_scope, action_name]</tt> or if this is missing, will translate the # <tt>[mailer_scope, action_name]</tt> or if this is missing, will translate the
# humanized version of the <tt>action_name</tt> # humanized version of the <tt>action_name</tt>
# * <tt>:to</tt> - Who the message is destined for, can be a string of addresses, or an array # * <tt>:to</tt> - Who the message is destined for, can be a string of addresses, or an array
# of addresses. # of addresses.
Expand Down

0 comments on commit 66880cf

Please sign in to comment.