:title => "Re: #{comment.diary_entry.title}")
mail :from => from_address(comment.user.display_name, "c", comment.id, comment.digest),
- :to => comment.diary_entry.user.email,
+ :to => comment.diary_entry.user.email,
:subject => I18n.t("notifier.diary_comment_notification.subject", :user => comment.user.display_name)
end
end
private
def with_recipient_locale(recipient)
- old_locale = I18n.locale
-
- begin
- I18n.locale = recipient.preferred_language_from(I18n.available_locales)
-
+ I18n.with_locale Locale.available.preferred(recipient.preferred_languages) do
yield
- ensure
- I18n.locale = old_locale
end
end