X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a22c3525e48872e7f7f083ba6589ca659a13234b..4028f4cdb91f616bc774dc9b9fa8c7183eb1f6dd:/app/models/notifier.rb diff --git a/app/models/notifier.rb b/app/models/notifier.rb index ff3349e28..a9bc0d101 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -108,7 +108,7 @@ class Notifier < ActionMailer::Base :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 @@ -175,14 +175,8 @@ class Notifier < ActionMailer::Base 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