diff options
author | gorm <gormer@gmail.com> | 2015-05-30 14:36:13 +0200 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-06-04 19:15:39 +0100 |
commit | 248d5227e3dfec7d314cbf60b80b54dc9efc6cc9 (patch) | |
tree | e57e1c0aa075bbdbef27095022d42d234b4d2fa1 | |
parent | d6a1f042d64be5c8906aa4af0e0a4c9c6dd08bfb (diff) |
Untranslatable string "Internal review of"
Fixes #2507
-rw-r--r-- | app/mailers/outgoing_mailer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/mailers/outgoing_mailer.rb b/app/mailers/outgoing_mailer.rb index 78041d04b..cc6190954 100644 --- a/app/mailers/outgoing_mailer.rb +++ b/app/mailers/outgoing_mailer.rb @@ -70,7 +70,7 @@ class OutgoingMailer < ApplicationMailer # Subject to use for followup def self.subject_for_followup(info_request, outgoing_message, options = {}) if outgoing_message.what_doing == 'internal_review' - return "Internal review of " + info_request.email_subject_request(:html => options[:html]) + return _("Internal review of {{email_subject}}", :email_subject => info_request.email_subject_request(:html => options[:html])) else return info_request.email_subject_followup(:incoming_message => outgoing_message.incoming_message_followup, :html => options[:html]) |