Send notification messages in the target user's language.

This commit is contained in:
Tom Hughes 2009-05-31 16:10:53 +00:00
parent f4f0c4b155
commit 5294e4d989
3 changed files with 27 additions and 0 deletions

View file

@ -14,3 +14,25 @@ module Net
end
end
end
# Monkey patch to allow sending of messages in specific locales
module ActionMailer
class Base
adv_attr_accessor :locale
private
alias_method :old_render_message, :render_message
def render_message(method_name, body)
old_locale= I18n.locale
begin
I18n.locale = @locale
message = old_render_message(method_name, body)
ensure
I18n.locale = old_locale
end
message
end
end
end