mirror of https://github.com/rails/rails
Correct ActionMailer subject i18n lookup scope.
The :actionmailer i18n scope part is not used and according to https://github.com/rails/rails/pull/2542 the implementation is correct.
This commit is contained in:
parent
ee1223c1ee
commit
66880cfe41
|
@ -524,7 +524,7 @@ module ActionMailer #:nodoc:
|
|||
#
|
||||
# * <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
|
||||
# <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>
|
||||
# * <tt>:to</tt> - Who the message is destined for, can be a string of addresses, or an array
|
||||
# of addresses.
|
||||
|
|
Loading…
Reference in New Issue