aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouise Crow <louise.crow@gmail.com>2015-06-04 19:16:05 +0100
committerLouise Crow <louise.crow@gmail.com>2015-06-04 19:16:05 +0100
commitc24c8093089452363940388cd3bb2d9298ca9a1c (patch)
treee57e1c0aa075bbdbef27095022d42d234b4d2fa1
parentd6a1f042d64be5c8906aa4af0e0a4c9c6dd08bfb (diff)
parent248d5227e3dfec7d314cbf60b80b54dc9efc6cc9 (diff)
Merge branch '2507_untranslatable_string' into develop
-rw-r--r--app/mailers/outgoing_mailer.rb2
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])